Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
50572e99
提交
50572e99
authored
2月 01, 2016
作者:
Frederic Bastien
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Move to a separate test file gpuarray tests that must always run, even when pygpu isn't available
上级
768fb73d
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
78 行增加
和
32 行删除
+78
-32
test_pickle.py
theano/sandbox/gpuarray/tests/test_pickle.py
+74
-0
test_type.py
theano/sandbox/gpuarray/tests/test_type.py
+4
-32
没有找到文件。
theano/sandbox/gpuarray/tests/test_pickle.py
0 → 100644
浏览文件 @
50572e99
"""Some pickle test when pygpu isn't there. The test when pygpu is
available are in test_type.py.
This is needed as we skip all the test file when pygpu isn't there in
regular test file.
"""
import
os
from
nose.plugins.skip
import
SkipTest
from
nose.tools
import
assert_raises
import
numpy
import
theano.sandbox.gpuarray
from
theano.compat
import
PY3
from
theano
import
config
from
theano.misc.pkl_utils
import
CompatUnpickler
if
not
theano
.
sandbox
.
gpuarray
.
pygpu_activated
:
import
theano.sandbox.cuda
as
cuda_ndarray
if
cuda_ndarray
.
cuda_available
:
cuda_ndarray
.
use
(
'gpu'
,
default_to_move_computation_to_gpu
=
False
,
move_shared_float32_to_gpu
=
False
,
enable_cuda
=
False
)
theano
.
sandbox
.
gpuarray
.
init_dev
(
'cuda'
)
from
..
import
pygpu_activated
# noqa
def
test_unpickle_gpuarray_as_numpy_ndarray_flag1
():
"""Only test when pygpu isn't
available. test_unpickle_gpuarray_as_numpy_ndarray_flag0 in
test_type.py test it when pygpu is there.
"""
if
pygpu_activated
:
raise
SkipTest
(
"pygpu disabled"
)
oldflag
=
config
.
experimental
.
unpickle_gpu_on_cpu
config
.
experimental
.
unpickle_gpu_on_cpu
=
False
try
:
testfile_dir
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
fname
=
'GpuArray.pkl'
with
open
(
os
.
path
.
join
(
testfile_dir
,
fname
),
'rb'
)
as
fp
:
if
PY3
:
u
=
CompatUnpickler
(
fp
,
encoding
=
"latin1"
)
else
:
u
=
CompatUnpickler
(
fp
)
assert_raises
(
ImportError
,
u
.
load
)
finally
:
config
.
experimental
.
unpickle_gpu_on_cpu
=
oldflag
def
test_unpickle_gpuarray_as_numpy_ndarray_flag2
():
oldflag
=
config
.
experimental
.
unpickle_gpu_on_cpu
config
.
experimental
.
unpickle_gpu_on_cpu
=
True
try
:
testfile_dir
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
fname
=
'GpuArray.pkl'
with
open
(
os
.
path
.
join
(
testfile_dir
,
fname
),
'rb'
)
as
fp
:
if
PY3
:
u
=
CompatUnpickler
(
fp
,
encoding
=
"latin1"
)
else
:
u
=
CompatUnpickler
(
fp
)
mat
=
u
.
load
()
assert
isinstance
(
mat
,
numpy
.
ndarray
)
assert
mat
[
0
]
==
-
42.0
finally
:
config
.
experimental
.
unpickle_gpu_on_cpu
=
oldflag
theano/sandbox/gpuarray/tests/test_type.py
浏览文件 @
50572e99
import
os
import
os
from
nose.tools
import
assert_raises
import
numpy
import
numpy
import
theano
import
theano
...
@@ -11,12 +10,9 @@ from theano.misc.pkl_utils import CompatUnpickler
...
@@ -11,12 +10,9 @@ from theano.misc.pkl_utils import CompatUnpickler
from
.config
import
test_ctx_name
from
.config
import
test_ctx_name
from
.test_basic_ops
import
rand_gpuarray
from
.test_basic_ops
import
rand_gpuarray
from
..type
import
GpuArrayType
from
..type
import
GpuArrayType
from
..
import
pygpu_activated
if
pygpu_activated
:
import
pygpu
import
pygpu
def
test_deep_copy
():
def
test_deep_copy
():
...
@@ -56,32 +52,10 @@ def test_filter_float():
...
@@ -56,32 +52,10 @@ def test_filter_float():
def
test_unpickle_gpuarray_as_numpy_ndarray_flag0
():
def
test_unpickle_gpuarray_as_numpy_ndarray_flag0
():
""" Test when pygpu isn't there for unpickle are in test_pickle.py"""
oldflag
=
config
.
experimental
.
unpickle_gpu_on_cpu
oldflag
=
config
.
experimental
.
unpickle_gpu_on_cpu
config
.
experimental
.
unpickle_gpu_on_cpu
=
False
config
.
experimental
.
unpickle_gpu_on_cpu
=
False
try
:
testfile_dir
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
fname
=
'GpuArray.pkl'
with
open
(
os
.
path
.
join
(
testfile_dir
,
fname
),
'rb'
)
as
fp
:
if
PY3
:
u
=
CompatUnpickler
(
fp
,
encoding
=
"latin1"
)
else
:
u
=
CompatUnpickler
(
fp
)
if
pygpu_activated
:
mat
=
u
.
load
()
assert
isinstance
(
mat
,
pygpu
.
gpuarray
.
GpuArray
)
assert
numpy
.
asarray
(
mat
)[
0
]
==
-
42.0
else
:
assert_raises
(
ImportError
,
u
.
load
)
finally
:
config
.
experimental
.
unpickle_gpu_on_cpu
=
oldflag
def
test_unpickle_gpuarray_as_numpy_ndarray_flag1
():
oldflag
=
config
.
experimental
.
unpickle_gpu_on_cpu
config
.
experimental
.
unpickle_gpu_on_cpu
=
True
try
:
try
:
testfile_dir
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
testfile_dir
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
fname
=
'GpuArray.pkl'
fname
=
'GpuArray.pkl'
...
@@ -92,9 +66,7 @@ def test_unpickle_gpuarray_as_numpy_ndarray_flag1():
...
@@ -92,9 +66,7 @@ def test_unpickle_gpuarray_as_numpy_ndarray_flag1():
else
:
else
:
u
=
CompatUnpickler
(
fp
)
u
=
CompatUnpickler
(
fp
)
mat
=
u
.
load
()
mat
=
u
.
load
()
assert
isinstance
(
mat
,
pygpu
.
gpuarray
.
GpuArray
)
assert
isinstance
(
mat
,
numpy
.
ndarray
)
assert
numpy
.
asarray
(
mat
)[
0
]
==
-
42.0
assert
mat
[
0
]
==
-
42.0
finally
:
finally
:
config
.
experimental
.
unpickle_gpu_on_cpu
=
oldflag
config
.
experimental
.
unpickle_gpu_on_cpu
=
oldflag
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论