Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
f9fbd00f
提交
f9fbd00f
authored
11月 25, 2016
作者:
Chinnadhurai Sankar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix flake8 errors
上级
98e109fa
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
3 行增加
和
4 行删除
+3
-4
rng_mrg.py
theano/sandbox/rng_mrg.py
+3
-4
没有找到文件。
theano/sandbox/rng_mrg.py
浏览文件 @
f9fbd00f
...
@@ -25,7 +25,7 @@ from . import multinomial
...
@@ -25,7 +25,7 @@ from . import multinomial
import
theano.sandbox.cuda
import
theano.sandbox.cuda
from
theano.sandbox.cuda
import
GpuOp
from
theano.sandbox.cuda
import
GpuOp
from
theano.sandbox.cuda.basic_ops
import
as_cuda_ndarray_variable
from
theano.sandbox.cuda.basic_ops
import
as_cuda_ndarray_variable
from
theano.gpuarray.basic_ops
import
GpuKernelBase
,
Kernel
,
infer_context_name
,
as_gpuarray_variable
from
theano.gpuarray.basic_ops
import
GpuKernelBase
,
Kernel
,
infer_context_name
,
as_gpuarray_variable
from
theano.gpuarray.type
import
GpuArrayType
from
theano.gpuarray.type
import
GpuArrayType
from
theano.gpuarray.fp16_help
import
write_w
from
theano.gpuarray.fp16_help
import
write_w
from
theano.gpuarray.opt
import
(
register_opt
as
register_gpua
,
from
theano.gpuarray.opt
import
(
register_opt
as
register_gpua
,
...
@@ -326,7 +326,6 @@ class mrg_uniform_base(Op):
...
@@ -326,7 +326,6 @@ class mrg_uniform_base(Op):
class
mrg_uniform
(
mrg_uniform_base
):
class
mrg_uniform
(
mrg_uniform_base
):
# CPU VERSION
# CPU VERSION
def
make_node
(
self
,
rstate
,
size
):
def
make_node
(
self
,
rstate
,
size
):
# error checking slightly redundant here, since
# error checking slightly redundant here, since
# this op should not be called directly.
# this op should not be called directly.
...
@@ -566,7 +565,7 @@ class mrg_uniform(mrg_uniform_base):
...
@@ -566,7 +565,7 @@ class mrg_uniform(mrg_uniform_base):
class
GPU_mrg_uniform
(
mrg_uniform_base
,
GpuOp
):
class
GPU_mrg_uniform
(
mrg_uniform_base
,
GpuOp
):
# GPU VERSION
# GPU VERSION
def
make_node
(
self
,
rstate
,
size
):
def
make_node
(
self
,
rstate
,
size
):
# error checking slightly redundant here, since
# error checking slightly redundant here, since
# this op should not be called directly.
# this op should not be called directly.
...
@@ -835,7 +834,7 @@ class GPUA_mrg_uniform(GpuKernelBase, mrg_uniform_base):
...
@@ -835,7 +834,7 @@ class GPUA_mrg_uniform(GpuKernelBase, mrg_uniform_base):
for
i
in
range
(
self
.
output_type
.
ndim
):
for
i
in
range
(
self
.
output_type
.
ndim
):
broad
.
append
(
tensor
.
extract_constant
(
size
[
i
])
==
1
)
broad
.
append
(
tensor
.
extract_constant
(
size
[
i
])
==
1
)
output_type
=
self
.
output_type
.
clone
(
broadcastable
=
broad
)()
output_type
=
self
.
output_type
.
clone
(
broadcastable
=
broad
)()
rstate
=
as_gpuarray_variable
(
rstate
,
infer_context_name
(
rstate
))
rstate
=
as_gpuarray_variable
(
rstate
,
infer_context_name
(
rstate
))
return
Apply
(
self
,
return
Apply
(
self
,
[
rstate
,
size
],
[
rstate
,
size
],
[
rstate
.
type
(),
output_type
])
[
rstate
.
type
(),
output_type
])
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论