Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
a74a472c
提交
a74a472c
authored
5月 10, 2013
作者:
Frederic
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add a test for the c_code cache that show a current problematic behavior.
上级
3943a742
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
53 行增加
和
0 行删除
+53
-0
test_cmodule.py
theano/gof/tests/test_cmodule.py
+53
-0
没有找到文件。
theano/gof/tests/test_cmodule.py
0 → 100644
浏览文件 @
a74a472c
"""We don't have real test for the cache, but it would be great to make them!
But this one test a current behavior that isn't good: the c_code isn't
deterministic based on the input type and the op.
"""
import
numpy
import
theano
class
MyOp
(
theano
.
compile
.
ops
.
DeepCopyOp
):
nb_called
=
0
def
c_code_cache_version
(
self
):
return
()
def
c_code
(
self
,
node
,
name
,
inames
,
onames
,
sub
):
MyOp
.
nb_called
+=
1
iname
,
=
inames
oname
,
=
onames
fail
=
sub
[
'fail'
]
itype
=
node
.
inputs
[
0
]
.
type
.
__class__
if
itype
in
self
.
c_code_and_version
:
code
,
version
=
self
.
c_code_and_version
[
itype
]
rand
=
numpy
.
random
.
rand
()
return
(
"""printf("
%(rand)
s
\\
n");"""
+
code
)
%
locals
()
# Else, no C code
return
super
(
DeepCopyOp
,
self
)
.
c_code
(
node
,
name
,
inames
,
onames
,
sub
)
def
test_inter_process_cache
():
"""When an op with c_code, but no version. If we have 2 apply node
in the graph with different inputs variable(so they don't get
merged) but the inputs variable have the same type, do we reuse
the same module? Even if they would generate different c_code?
Currently this test show that we generate the c_code only once.
This is to know if the c_code can add information specific to the
node.inputs[*].owner like the name of the variable.
"""
x
,
y
=
theano
.
tensor
.
vectors
(
'xy'
)
f
=
theano
.
function
([
x
,
y
],
[
MyOp
()(
x
),
MyOp
()(
y
)])
f
(
numpy
.
arange
(
60
),
numpy
.
arange
(
60
))
assert
MyOp
.
nb_called
==
1
# What if we compile a new function with new variables?
x
,
y
=
theano
.
tensor
.
vectors
(
'xy'
)
f
=
theano
.
function
([
x
,
y
],
[
MyOp
()(
x
),
MyOp
()(
y
)])
f
(
numpy
.
arange
(
60
),
numpy
.
arange
(
60
))
assert
MyOp
.
nb_called
==
1
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论