Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
f4e82d73
提交
f4e82d73
authored
11月 16, 2010
作者:
Frederic Bastien
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test return_internal_type to the Theano memory contract for tensor and cuda ndarray.
上级
1becb53f
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
60 行增加
和
15 行删除
+60
-15
test_basic_ops.py
theano/sandbox/cuda/tests/test_basic_ops.py
+1
-1
test_basic.py
theano/tensor/tests/test_basic.py
+59
-14
没有找到文件。
theano/sandbox/cuda/tests/test_basic_ops.py
浏览文件 @
f4e82d73
...
@@ -803,7 +803,7 @@ def test_duplicate_arg_elemwise():
...
@@ -803,7 +803,7 @@ def test_duplicate_arg_elemwise():
import
theano.tensor.tests.test_basic
import
theano.tensor.tests.test_basic
test_shared_options
=
theano
.
tensor
.
tests
.
test_basic
.
build_test_shared_options
(
tcn
.
shared_constructor
,
'float32'
,
False
,
False
)
test_shared_options
=
theano
.
tensor
.
tests
.
test_basic
.
build_test_shared_options
(
tcn
.
shared_constructor
,
'float32'
,
False
,
False
,
cuda_ndarray
.
CudaNdarray
,
theano
.
tensor
.
exp
,
numpy
.
exp
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
test_many_arg_elemwise
()
test_many_arg_elemwise
()
...
...
theano/tensor/tests/test_basic.py
浏览文件 @
f4e82d73
...
@@ -3381,7 +3381,10 @@ def test_dimshuffle_duplicate():
...
@@ -3381,7 +3381,10 @@ def test_dimshuffle_duplicate():
def
build_test_shared_options
(
shared_constructor_
,
def
build_test_shared_options
(
shared_constructor_
,
dtype_
,
dtype_
,
get_value_borrow_true_alias_
,
get_value_borrow_true_alias_
,
shared_borrow_true_alias_
):
shared_borrow_true_alias_
,
internal_type_
,
theano_fct_
,
ref_fct_
):
"""
"""
This is a generic fct to allow reusing the same test function
This is a generic fct to allow reusing the same test function
for many shared variable of many types.
for many shared variable of many types.
...
@@ -3391,6 +3394,9 @@ def build_test_shared_options(shared_constructor_,
...
@@ -3391,6 +3394,9 @@ def build_test_shared_options(shared_constructor_,
dtype
=
dtype_
dtype
=
dtype_
get_value_borrow_true_alias
=
get_value_borrow_true_alias_
get_value_borrow_true_alias
=
get_value_borrow_true_alias_
shared_borrow_true_alias
=
shared_borrow_true_alias_
shared_borrow_true_alias
=
shared_borrow_true_alias_
internal_type
=
internal_type_
theano_fct
=
staticmethod
(
theano_fct_
)
ref_fct
=
staticmethod
(
ref_fct_
)
def
test_shared_dont_alias
(
self
):
def
test_shared_dont_alias
(
self
):
dtype
=
self
.
dtype
dtype
=
self
.
dtype
...
@@ -3399,22 +3405,22 @@ def build_test_shared_options(shared_constructor_,
...
@@ -3399,22 +3405,22 @@ def build_test_shared_options(shared_constructor_,
rng
=
numpy
.
random
.
RandomState
([
3
,
5
,
17
])
rng
=
numpy
.
random
.
RandomState
([
3
,
5
,
17
])
x
=
numpy
.
asarray
(
rng
.
uniform
(
0
,
1
,[
2
,
4
]),
dtype
=
dtype
)
x
=
numpy
.
asarray
(
rng
.
uniform
(
0
,
1
,[
2
,
4
]),
dtype
=
dtype
)
x_
sum
=
x
.
sum
(
)
x_
ref
=
self
.
ref_fct
(
x
)
x_shared
=
self
.
shared_constructor
(
x
,
borrow
=
False
)
x_shared
=
self
.
shared_constructor
(
x
,
borrow
=
False
)
total
=
theano
.
tensor
.
sum
(
x_shared
)
total
=
self
.
theano_fct
(
x_shared
)
total_func
=
theano
.
function
([],
total
)
total_func
=
theano
.
function
([],
total
)
total_val
=
total_func
()
total_val
=
total_func
()
assert
numpy
.
allclose
(
x
.
sum
(
),
total_val
)
assert
numpy
.
allclose
(
self
.
ref_fct
(
x
),
total_val
)
x
+=
1
x
+=
1
total_val_2
=
total_func
()
total_val_2
=
total_func
()
#value used to construct should not alias with internal
#value used to construct should not alias with internal
assert
total_val
==
total_val_2
assert
numpy
.
allclose
(
total_val
,
total_val_2
)
x
=
x_shared
.
get_value
(
borrow
=
False
)
x
=
x_shared
.
get_value
(
borrow
=
False
)
...
@@ -3423,7 +3429,7 @@ def build_test_shared_options(shared_constructor_,
...
@@ -3423,7 +3429,7 @@ def build_test_shared_options(shared_constructor_,
total_val_3
=
total_func
()
total_val_3
=
total_func
()
#value returned by access should not alias with internal
#value returned by access should not alias with internal
assert
total_val
==
total_val_3
assert
numpy
.
allclose
(
total_val
,
total_val_3
)
#in this case we can alias
#in this case we can alias
x
=
x_shared
.
get_value
(
borrow
=
True
)
x
=
x_shared
.
get_value
(
borrow
=
True
)
...
@@ -3432,9 +3438,46 @@ def build_test_shared_options(shared_constructor_,
...
@@ -3432,9 +3438,46 @@ def build_test_shared_options(shared_constructor_,
#this is not required by the contract but it is a feature we've
#this is not required by the contract but it is a feature we've
#implemented for some type of SharedVariable.
#implemented for some type of SharedVariable.
if
self
.
get_value_borrow_true_alias
:
if
self
.
get_value_borrow_true_alias
:
assert
numpy
.
allclose
(
x
.
sum
(
),
total_func
())
assert
numpy
.
allclose
(
self
.
ref_fct
(
x
),
total_func
())
else
:
else
:
assert
numpy
.
allclose
(
x_sum
,
total_func
())
assert
numpy
.
allclose
(
x_ref
,
total_func
())
def
test_return_internal_type
(
self
):
################ TODO test Out.
################ TODO test set_value!!!!
dtype
=
self
.
dtype
if
dtype
is
None
:
dtype
=
theano
.
config
.
floatX
rng
=
numpy
.
random
.
RandomState
([
3
,
5
,
17
])
x
=
numpy
.
asarray
(
rng
.
uniform
(
0
,
1
,[
2
,
4
]),
dtype
=
dtype
)
x_ref
=
self
.
ref_fct
(
x
)
x_shared
=
self
.
shared_constructor
(
x
,
borrow
=
False
)
total
=
self
.
theano_fct
(
x_shared
)
total_func
=
theano
.
function
([],
total
)
#in this case we can alias with the internal value
x
=
x_shared
.
get_value
(
borrow
=
True
,
return_internal_type
=
True
)
assert
isinstance
(
x
,
self
.
internal_type
)
values_to_add
=
numpy
.
ones
(
x
.
shape
,
dtype
=
dtype
)
if
not
isinstance
(
values_to_add
,
self
.
internal_type
):
values_to_add
=
self
.
internal_type
(
values_to_add
)
#supported for cudandarray, but not ndarray.
x
+=
values_to_add
#supported by ndarray and CudaNdarray
#this is not required by the contract but it is a feature we can
#implement for some type of SharedVariable.
assert
numpy
.
allclose
(
self
.
ref_fct
(
x
),
total_func
())
x
=
x_shared
.
get_value
(
borrow
=
False
,
return_internal_type
=
True
)
assert
isinstance
(
x
,
self
.
internal_type
)
x
+=
values_to_add
#supported by ndarray and CudaNdarray
#this is required by the contract
assert
not
numpy
.
allclose
(
self
.
ref_fct
(
x
),
total_func
())
def
test_shared_do_alias
(
self
):
def
test_shared_do_alias
(
self
):
dtype
=
self
.
dtype
dtype
=
self
.
dtype
...
@@ -3443,29 +3486,31 @@ def build_test_shared_options(shared_constructor_,
...
@@ -3443,29 +3486,31 @@ def build_test_shared_options(shared_constructor_,
rng
=
numpy
.
random
.
RandomState
([
2
,
4
,
16
])
rng
=
numpy
.
random
.
RandomState
([
2
,
4
,
16
])
x
=
numpy
.
asarray
(
rng
.
uniform
(
1
,
2
,[
4
,
2
]),
dtype
=
dtype
)
x
=
numpy
.
asarray
(
rng
.
uniform
(
1
,
2
,[
4
,
2
]),
dtype
=
dtype
)
x_
sum
=
x
.
sum
(
)
x_
ref
=
self
.
ref_fct
(
x
)
x_shared
=
self
.
shared_constructor
(
x
,
borrow
=
True
)
x_shared
=
self
.
shared_constructor
(
x
,
borrow
=
True
)
total
=
theano
.
tensor
.
sum
(
x_shared
)
total
=
self
.
theano_fct
(
x_shared
)
total_func
=
theano
.
function
([],
total
)
total_func
=
theano
.
function
([],
total
)
total_val
=
total_func
()
total_val
=
total_func
()
assert
numpy
.
allclose
(
x
.
sum
(
),
total_val
)
assert
numpy
.
allclose
(
self
.
ref_fct
(
x
),
total_val
)
x
+=
1
x
+=
1
#not required by the contract but it is a feature we've implemented
#not required by the contract but it is a feature we've implemented
if
self
.
shared_borrow_true_alias
:
if
self
.
shared_borrow_true_alias
:
assert
numpy
.
allclose
(
x
.
sum
(
),
total_func
())
assert
numpy
.
allclose
(
self
.
ref_fct
(
x
),
total_func
())
else
:
else
:
assert
numpy
.
allclose
(
x_
sum
,
total_func
())
assert
numpy
.
allclose
(
x_
ref
,
total_func
())
return
SharedTester
return
SharedTester
test_shared_options
=
build_test_shared_options
(
tensor
.
shared
,
'float64'
,
True
,
True
)
test_shared_options
=
build_test_shared_options
(
tensor
.
shared
,
'float64'
,
True
,
True
,
numpy
.
ndarray
,
theano
.
tensor
.
sum
,
numpy
.
sum
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论