Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
8e7abaf4
提交
8e7abaf4
authored
9月 12, 2017
作者:
Frederic Bastien
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Move the test to the GPU directory and mimic device=cuda in another test…
Move the test to the GPU directory and mimic device=cuda in another test following the current change.
上级
79582f25
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
29 行增加
和
20 行删除
+29
-20
rng_mrg.py
theano/gpuarray/rng_mrg.py
+3
-2
test_rng_mrg.py
theano/gpuarray/tests/test_rng_mrg.py
+23
-1
test_rng_mrg.py
theano/sandbox/tests/test_rng_mrg.py
+3
-17
没有找到文件。
theano/gpuarray/rng_mrg.py
浏览文件 @
8e7abaf4
...
...
@@ -310,8 +310,9 @@ class GPUA_mrg_uniform(GpuKernelBase, mrg_uniform_base):
def
local_gpua_mrg_graph
(
op
,
context_name
,
inputs
,
outputs
):
if
(
type
(
op
)
==
mrg_uniform
and
isinstance
(
inputs
[
0
]
.
type
,
GpuArrayType
)
and
not
isinstance
(
inputs
[
0
]
.
owner
.
op
,
GpuFromHost
)
):
(
inputs
[
0
]
.
owner
is
None
or
not
isinstance
(
inputs
[
0
]
.
owner
.
op
,
GpuFromHost
))):
outs
=
GPUA_mrg_uniform
.
new
(
inputs
[
0
],
op
.
output_type
.
ndim
,
op
.
output_type
.
dtype
,
...
...
theano/gpuarray/tests/test_rng_mrg.py
浏览文件 @
8e7abaf4
...
...
@@ -12,6 +12,7 @@ from theano.sandbox.tests.test_rng_mrg import test_f16_nonzero as cpu_f16_nonzer
from
theano.tests
import
unittest_tools
as
utt
from
.config
import
mode_with_gpu
as
mode
from
.config
import
test_ctx_name
from
..type
import
gpuarray_shared_constructor
from
..rng_mrg
import
GPUA_mrg_uniform
...
...
@@ -165,4 +166,25 @@ def test_validate_input_types_gpuarray_backend():
def
test_f16_nonzero
():
cpu_f16_nonzero
(
mode
=
mode
,
op_to_check
=
GPUA_mrg_uniform
)
try
:
# To have theano.shared(x
theano
.
compile
.
shared_constructor
(
gpuarray_shared_constructor
)
cpu_f16_nonzero
(
mode
=
mode
,
op_to_check
=
GPUA_mrg_uniform
)
finally
:
theano
.
compile
.
shared_constructor
(
gpuarray_shared_constructor
,
remove
=
True
)
def
test_cpu_target_with_shared_variable
():
srng
=
MRG_RandomStreams
()
s
=
np
.
random
.
rand
(
2
,
3
)
.
astype
(
'float32'
)
x
=
gpuarray_shared_constructor
(
s
,
name
=
'x'
)
y
=
srng
.
uniform
(
x
.
shape
,
target
=
'cpu'
)
y
.
name
=
'y'
z
=
(
x
*
y
)
.
sum
()
z
.
name
=
'z'
fz
=
theano
.
function
([],
z
,
mode
=
mode
)
nodes
=
fz
.
maker
.
fgraph
.
toposort
()
assert
not
any
([
isinstance
(
node
.
op
,
GPUA_mrg_uniform
)
for
node
in
nodes
])
theano/sandbox/tests/test_rng_mrg.py
浏览文件 @
8e7abaf4
...
...
@@ -11,7 +11,7 @@ from six.moves import xrange
import
theano
from
theano
import
change_flags
,
config
,
tensor
from
theano.sandbox
import
rng_mrg
from
theano.sandbox.rng_mrg
import
MRG_RandomStreams
,
mrg_uniform
from
theano.sandbox.rng_mrg
import
MRG_RandomStreams
from
theano.tests
import
unittest_tools
as
utt
from
theano.tests.unittest_tools
import
attr
...
...
@@ -740,7 +740,8 @@ def test_f16_nonzero(mode=None, op_to_check=rng_mrg.mrg_uniform):
m
=
srng
.
uniform
(
size
=
(
1000
,
1000
),
dtype
=
'float16'
)
assert
m
.
dtype
==
'float16'
,
m
.
type
f
=
theano
.
function
([],
m
,
mode
=
mode
)
assert
any
(
isinstance
(
n
.
op
,
op_to_check
)
for
n
in
f
.
maker
.
fgraph
.
apply_nodes
)
assert
any
(
isinstance
(
n
.
op
,
op_to_check
)
for
n
in
f
.
maker
.
fgraph
.
apply_nodes
)
m_val
=
f
()
assert
np
.
all
((
0
<
m_val
)
&
(
m_val
<
1
))
...
...
@@ -760,21 +761,6 @@ def test_target_parameter():
basic_target_parameter_test
(
srng
.
multinomial_wo_replacement
(
pvals
=
pvals
.
astype
(
'float32'
),
target
=
'cpu'
))
def
test_cpu_target_with_shared_variable
():
srng
=
MRG_RandomStreams
()
x
=
theano
.
shared
(
np
.
random
.
rand
(
2
,
3
)
.
astype
(
'float32'
),
name
=
'x'
)
y
=
srng
.
uniform
(
x
.
shape
,
target
=
'cpu'
)
y
.
name
=
'y'
z
=
(
x
*
y
)
.
sum
()
z
.
name
=
'z'
fz
=
theano
.
function
([],
z
)
nodes
=
fz
.
maker
.
fgraph
.
toposort
()
assert
any
([
isinstance
(
node
.
op
,
mrg_uniform
)
for
node
in
nodes
])
if
__name__
==
"__main__"
:
rng
=
MRG_RandomStreams
(
np
.
random
.
randint
(
2147462579
))
print
(
theano
.
__file__
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论