Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
2a5c64c4
提交
2a5c64c4
authored
4月 28, 2014
作者:
Li
提交者:
Frederic
10月 21, 2014
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
pickling a graph has a problem
上级
0e8e5009
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
89 行增加
和
8 行删除
+89
-8
function_module.py
theano/compile/function_module.py
+87
-6
test_graph_opt_caching.py
theano/tests/test_graph_opt_caching.py
+2
-2
没有找到文件。
theano/compile/function_module.py
浏览文件 @
2a5c64c4
...
...
@@ -1067,12 +1067,93 @@ class FunctionMaker(object):
try
:
theano
.
config
.
compute_test_value
=
theano
.
config
.
compute_test_value_opt
gof
.
Op
.
add_stack_trace_on_call
=
False
start_optimizer
=
time
.
time
()
import
ipdb
;
ipdb
.
set_trace
()
is_same_graph
(
old_graph
,
fgraph
.
outputs
,
givens
=...
)
optimizer_profile
=
optimizer
(
fgraph
)
#fgraph.inputs, fgraph.outputs
end_optimizer
=
time
.
time
()
opt_time
=
end_optimizer
-
start_optimizer
def
optimize_graph
(
fgraph
):
'''
params
------
fgraph: the new graph to be optimized, optimized in-place.
{before_opt: after_opt, ....}
return
------
opt_time: timing
'''
from
theano.gof.compilelock
import
get_lock
,
release_lock
import
cPickle
import
os.path
graph_db_file
=
theano
.
config
.
compiledir
+
'/optimized_graphs.pkl'
# the inputs, outputs, and size of the graph to be optimized
inputs_new
=
fgraph
.
inputs
outputs_new
=
fgraph
.
outputs
size_new
=
len
(
fgraph
.
nodes
)
need_optimize
=
False
get_lock
()
'''
graph_db and need_optimize
'''
try
:
f
=
open
(
graph_db_file
,
'r+'
)
except
IOError
:
# create graph_db
f
=
open
(
graph_db_file
,
'w+b'
)
print
'creating
%
s'
%
graph_db_file
# load the graph_db dictionary
try
:
graph_db
=
cPickle
.
load
(
f
)
except
EOFError
:
# the file has nothing in it
graph_db
=
{}
print
'loaded
%
s, size=
%
d'
%
(
graph_db_file
,
len
(
graph_db
))
need_optimize
=
True
# the sole purpose of this loop is to fill 'same_graph_found'
for
graph_old
in
graph_db
.
keys
():
inputs_old
=
graph_old
.
inputs
outputs_old
=
graph_old
.
outputs
size_old
=
len
(
graph_old
.
nodes
)
# Some heuristics to check is the same graphs have
# already been optimized before.
if
len
(
inputs_new
)
!=
len
(
inputs_old
):
# If the inputs are of different size,
# two graphs are for sure different
continue
else
:
# if the both inputs are of the same size
givens
=
dict
(
zip
(
inputs_new
,
inputs_old
))
is_same
=
is_same_graph
(
outputs_new
,
outputs_old
,
givens
=
givens
)
if
is_same
:
need_optimize
=
False
break
# now optimize or not
if
need_optimize
:
# this is a brand new graph, optimize it, save it to graph_db
print
'Need to optimize the graph'
before_opt
=
copy
.
deepcopy
(
fgraph
)
start_optimizer
=
time
.
time
()
optimizer_profile
=
optimizer
(
fgraph
)
end_optimizer
=
time
.
time
()
opt_time
=
end_optimizer
-
start_optimizer
import
ipdb
;
ipdb
.
set_trace
()
graph_db
.
update
({
before_opt
:
fgraph
})
cPickle
.
dump
(
graph_db
,
f
)
else
:
print
'Do not need to optimize the graph'
# just read the optmized graph from graph_db
opt_time
=
0
fgraph
=
graph_db
[
fgraph
]
# release stuff
f
.
close
()
release_lock
()
opt_time
opt_time
=
optimize_graph
(
fgraph
)
if
profile
:
profile
.
optimizer_time
+=
opt_time
if
theano
.
config
.
profile_optimizer
:
...
...
theano/tests/test_graph_opt_caching.py
浏览文件 @
2a5c64c4
...
...
@@ -52,5 +52,5 @@ def test_graph_optimization_caching():
if
__name__
==
'__main__'
:
#
test_graph_optimization_caching()
test_graph_equivalence
()
test_graph_optimization_caching
()
#
test_graph_equivalence()
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论