Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
ae9e4693
提交
ae9e4693
authored
8月 06, 2012
作者:
Pascal Lamblin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Make copy(WrapLinker) copy the wrapped linkers
It avoids adding an fgraph to the default linker. Add test.
上级
101be6f8
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
39 行增加
和
1 行删除
+39
-1
test_modes.py
theano/compile/tests/test_modes.py
+23
-1
link.py
theano/gof/link.py
+16
-0
没有找到文件。
theano/compile/tests/test_modes.py
浏览文件 @
ae9e4693
"""
"""
Test compilation modes
Test compilation modes
"""
"""
import
copy
import
unittest
import
unittest
import
theano
import
theano
...
@@ -25,7 +26,6 @@ class T_bunch_of_modes(unittest.TestCase):
...
@@ -25,7 +26,6 @@ class T_bunch_of_modes(unittest.TestCase):
modes
=
predef_modes
+
[
Mode
(
linker
,
'fast_run'
)
for
linker
in
linkers
]
modes
=
predef_modes
+
[
Mode
(
linker
,
'fast_run'
)
for
linker
in
linkers
]
for
mode
in
modes
:
for
mode
in
modes
:
x
=
T
.
matrix
()
x
=
T
.
matrix
()
y
=
T
.
vector
()
y
=
T
.
vector
()
f
=
theano
.
function
([
x
,
y
],
x
+
y
,
mode
=
mode
)
f
=
theano
.
function
([
x
,
y
],
x
+
y
,
mode
=
mode
)
...
@@ -33,6 +33,7 @@ class T_bunch_of_modes(unittest.TestCase):
...
@@ -33,6 +33,7 @@ class T_bunch_of_modes(unittest.TestCase):
f
([[
1
,
2
],
[
3
,
4
]],
[
5
,
6
])
f
([[
1
,
2
],
[
3
,
4
]],
[
5
,
6
])
linker_classes_involved
.
append
(
f
.
maker
.
mode
.
linker
.
__class__
)
linker_classes_involved
.
append
(
f
.
maker
.
mode
.
linker
.
__class__
)
#print 'MODE:', mode, f.maker.mode.linker, 'stop'
#print 'MODE:', mode, f.maker.mode.linker, 'stop'
# regression check:
# regression check:
# there should be
# there should be
# - VM_Linker
# - VM_Linker
...
@@ -42,5 +43,26 @@ class T_bunch_of_modes(unittest.TestCase):
...
@@ -42,5 +43,26 @@ class T_bunch_of_modes(unittest.TestCase):
# - DebugMode's Linker (DEBUG_MODE)
# - DebugMode's Linker (DEBUG_MODE)
assert
5
==
len
(
set
(
linker_classes_involved
))
assert
5
==
len
(
set
(
linker_classes_involved
))
class
T_ProfileMode_WrapLinker
(
unittest
.
TestCase
):
def
test_1
(
self
):
# First, compile a function with a new ProfileMode() object
# No need to call that function
x
=
T
.
matrix
()
mode
=
ProfileMode
()
theano
.
function
([
x
],
x
*
2
,
mode
=
mode
)
# Then, build a mode with the same linker, and a modified optimizer
default_mode
=
theano
.
compile
.
mode
.
get_default_mode
()
modified_mode
=
default_mode
.
including
(
'specialize'
)
# The following line used to fail, with Python 2.4, in July 2012,
# because an fgraph was associated to the default linker
copy
.
deepcopy
(
modified_mode
)
# More straightforward test
assert
theano
.
compile
.
mode
.
get_default_mode
()
.
linker
.
fgraph
is
None
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
unittest
.
main
()
unittest
.
main
()
theano/gof/link.py
浏览文件 @
ae9e4693
...
@@ -553,6 +553,22 @@ class WrapLinker(Linker):
...
@@ -553,6 +553,22 @@ class WrapLinker(Linker):
self
.
linkers
=
linkers
self
.
linkers
=
linkers
self
.
wrapper
=
wrapper
self
.
wrapper
=
wrapper
def
__copy__
(
self
):
"""
Shallow copy of a WrapLinker.
@returns: A copy of self, where each of the linkers in self.linkers
have been shallow-copied.
It is useful because in FunctionMaker, copy.copy is called on the
Mode's linker, so that it is not modified inplace when linker.accept()
is called. In this case, we want the wrapped linkers to be copied too.
"""
other
=
self
.
__class__
(
linkers
=
[
copy
(
l
)
for
l
in
self
.
linkers
],
wrapper
=
self
.
wrapper
)
return
other
def
accept
(
self
,
fgraph
,
no_recycling
=
None
):
def
accept
(
self
,
fgraph
,
no_recycling
=
None
):
"""
"""
@type fgraph: gof.FunctionGraph
@type fgraph: gof.FunctionGraph
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论