Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
a14dcfad
提交
a14dcfad
authored
2月 19, 2017
作者:
Pascal Lamblin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Move test of optimization into test_opt.py
上级
42ffa21a
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
47 行增加
和
47 行删除
+47
-47
test_basic_ops.py
theano/gpuarray/tests/test_basic_ops.py
+0
-45
test_elemwise.py
theano/gpuarray/tests/test_elemwise.py
+1
-1
test_opt.py
theano/gpuarray/tests/test_opt.py
+46
-1
没有找到文件。
theano/gpuarray/tests/test_basic_ops.py
浏览文件 @
a14dcfad
...
...
@@ -474,48 +474,3 @@ def test_Gpujoin_inplace():
f
=
theano
.
function
([
s
],
theano
.
Out
(
c
,
borrow
=
True
))
assert
x
.
get_value
(
borrow
=
True
,
return_internal_type
=
True
)
is
f
(
0
)
assert
np
.
allclose
(
f
(
0
),
[
3
,
4
,
5
])
def
test_many_arg_elemwise
():
# this test checks whether the + and * elemwise ops can handle
# extremely large numbers of arguments on gpu
rng
=
np
.
random
.
RandomState
([
1
,
2
,
3
])
for
num_args
in
[
75
]:
for
op_to_test
in
[
theano
.
tensor
.
add
,
theano
.
tensor
.
mul
]:
for
nb_dim
in
[
2
,
3
,
4
,
5
,
7
]:
shapes
=
[
rng
.
randint
(
1
,
5
)
for
i
in
range
(
nb_dim
)]
args
=
[
np
.
cast
[
'float32'
](
rng
.
randn
(
*
shapes
))
for
arg
in
range
(
0
,
num_args
)]
symb_args
=
[
theano
.
tensor
.
TensorType
(
'float32'
,
(
False
,)
*
nb_dim
)()
for
arg
in
range
(
0
,
num_args
)]
outputs
=
[]
for
mode
in
[
mode_with_gpu
,
mode_without_gpu
]:
# test the optijmization local_gpu_elemwise_0
f
=
theano
.
function
(
symb_args
,
op_to_test
(
*
symb_args
),
mode
=
mode
.
excluding
(
"local_gpu_elemwise_1"
))
outputs
.
append
(
f
(
*
args
))
# assert that the test was done on the gpu.
if
mode
is
mode_with_gpu
:
assert
any
([
isinstance
(
node
.
op
,
GpuElemwise
)
for
node
in
f
.
maker
.
fgraph
.
apply_nodes
])
# test the optijmization local_gpu_elemwise_1
f
=
theano
.
function
(
symb_args
,
GpuFromHost
(
test_ctx_name
)(
op_to_test
(
*
symb_args
)),
mode
=
mode
.
excluding
(
"local_gpu_elemwise_0"
))
out
=
f
(
*
args
)
# assert that the test was done on the gpu.
if
mode
is
mode_with_gpu
:
assert
any
([
isinstance
(
node
.
op
,
GpuElemwise
)
for
node
in
f
.
maker
.
fgraph
.
apply_nodes
])
utt
.
assert_allclose
(
out
,
outputs
[
-
1
])
results_gpu
,
results_cpu
=
outputs
utt
.
assert_allclose
(
results_gpu
,
results_cpu
)
theano/gpuarray/tests/test_elemwise.py
浏览文件 @
a14dcfad
...
...
@@ -18,7 +18,7 @@ from ..type import GpuArrayType, get_context
from
pygpu
import
ndgpuarray
as
gpuarray
# This is ac
ut
ally a test for GpuElemwise
# This is ac
tu
ally a test for GpuElemwise
class
test_gpu_Broadcast
(
test_elemwise
.
test_Broadcast
):
cop
=
GpuElemwise
ctype
=
GpuArrayType
...
...
theano/gpuarray/tests/test_opt.py
浏览文件 @
a14dcfad
...
...
@@ -19,7 +19,7 @@ from ..elemwise import GpuCAReduceCuda, GpuCAReduceCPY, GpuElemwise
from
..subtensor
import
GpuSubtensor
from
..linalg
import
GpuCusolverSolve
,
cusolver_available
from
.config
import
mode_with_gpu
,
test_ctx_name
,
SkipTest
from
.config
import
mode_with_gpu
,
mode_without_gpu
,
test_ctx_name
,
SkipTest
def
test_local_assert
():
...
...
@@ -448,6 +448,51 @@ def test_local_gpu_elemwise():
utt
.
assert_allclose
(
out
[
1
],
a_v
[::
2
]
*
c_v
[::
2
])
def
test_many_arg_elemwise
():
# this test checks whether the + and * elemwise ops can handle
# extremely large numbers of arguments on gpu
rng
=
np
.
random
.
RandomState
([
1
,
2
,
3
])
for
num_args
in
[
75
]:
for
op_to_test
in
[
theano
.
tensor
.
add
,
theano
.
tensor
.
mul
]:
for
nb_dim
in
[
2
,
3
,
4
,
5
,
7
]:
shapes
=
[
rng
.
randint
(
1
,
5
)
for
i
in
range
(
nb_dim
)]
args
=
[
np
.
cast
[
'float32'
](
rng
.
randn
(
*
shapes
))
for
arg
in
range
(
0
,
num_args
)]
symb_args
=
[
theano
.
tensor
.
TensorType
(
'float32'
,
(
False
,)
*
nb_dim
)()
for
arg
in
range
(
0
,
num_args
)]
outputs
=
[]
for
mode
in
[
mode_with_gpu
,
mode_without_gpu
]:
# test the optijmization local_gpu_elemwise_0
f
=
theano
.
function
(
symb_args
,
op_to_test
(
*
symb_args
),
mode
=
mode
.
excluding
(
"local_gpu_elemwise_1"
))
outputs
.
append
(
f
(
*
args
))
# assert that the test was done on the gpu.
if
mode
is
mode_with_gpu
:
assert
any
([
isinstance
(
node
.
op
,
GpuElemwise
)
for
node
in
f
.
maker
.
fgraph
.
apply_nodes
])
# test the optijmization local_gpu_elemwise_1
f
=
theano
.
function
(
symb_args
,
GpuFromHost
(
test_ctx_name
)(
op_to_test
(
*
symb_args
)),
mode
=
mode
.
excluding
(
"local_gpu_elemwise_0"
))
out
=
f
(
*
args
)
# assert that the test was done on the gpu.
if
mode
is
mode_with_gpu
:
assert
any
([
isinstance
(
node
.
op
,
GpuElemwise
)
for
node
in
f
.
maker
.
fgraph
.
apply_nodes
])
utt
.
assert_allclose
(
out
,
outputs
[
-
1
])
results_gpu
,
results_cpu
=
outputs
utt
.
assert_allclose
(
results_gpu
,
results_cpu
)
def
test_local_lift_abstractconv_gpu_shape
():
prev
=
theano
.
config
.
on_opt_error
try
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论