Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
543a7812
提交
543a7812
authored
5月 20, 2014
作者:
Li
提交者:
Frederic
10月 21, 2014
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
is_same_graph complains about Exception: inputs is already owned by another fgraph
上级
c98f2e48
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
51 行增加
和
23 行删除
+51
-23
function_module.py
theano/compile/function_module.py
+50
-23
test_graph_opt_caching.py
theano/tests/test_graph_opt_caching.py
+1
-0
没有找到文件。
theano/compile/function_module.py
浏览文件 @
543a7812
...
...
@@ -19,10 +19,9 @@ import theano.compile.mode
from
theano.compile.io
import
(
In
,
SymbolicInput
,
SymbolicInputKit
,
SymbolicOutput
)
from
theano.compile.ops
import
deep_copy_op
,
view_op
from
theano.gof.graph
import
is_same_graph
from
theano.gof.op
import
ops_with_inner_function
import
logging
_logger
=
logging
.
getLogger
(
'theano.compile.function_module'
)
...
...
@@ -1094,71 +1093,97 @@ class FunctionMaker(object):
'''
try
:
f
=
open
(
graph_db_file
,
'r+'
)
print
'graph_db exists'
except
IOError
:
# create graph_db
f
=
open
(
graph_db_file
,
'w+b'
)
print
'creat
ing
%
s'
%
graph_db_file
print
'creat
ed new graph_db
%
s'
%
graph_db_file
# load the graph_db dictionary
try
:
graph_db
=
cPickle
.
load
(
f
)
print
'graph_db is not empty'
except
EOFError
:
# the file has nothing in it
print
'graph_db is empty'
graph_db
=
{}
print
'loaded
%
s, size=
%
d'
%
(
graph_db_file
,
len
(
graph_db
))
print
'loaded
graph_db from
%
s, size=
%
d'
%
(
graph_db_file
,
len
(
graph_db
))
need_optimize
=
True
# the sole purpose of this loop is to set 'need_optimize'
for
graph_old
in
graph_db
.
keys
(
):
for
i
,
graph_old
in
enumerate
(
graph_db
.
keys
()
):
inputs_old
=
graph_old
.
inputs
outputs_old
=
graph_old
.
outputs
size_old
=
len
(
graph_old
.
nodes
)
print
'looping through graph_db
%
d/
%
d'
%
(
i
+
1
,
len
(
graph_db
))
# 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
# two graphs are for sure different
print
'need to optimize, because input size is different'
continue
elif
len
(
outputs_new
)
!=
len
(
outputs_old
):
# If the inputs are of different size,
# two graphs are for sure different
print
'need to optimize, because output size is different'
continue
else
:
# when 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
)
'''
# strip .fgraph off the givens
i_new = [copy.deepcopy(input_new) for input_new in inputs_new]
i_old = [copy.deepcopy(input_old) for input_old in inputs_old]
for node in i_new:
node.fgraph = None
for node in i_old:
node.fgraph = None
givens = dict(zip(i_new, i_old))
'''
# each element indicates if one of the outputs has the same graph
flags
=
[]
for
output_new
,
output_old
in
zip
(
outputs_new
,
outputs_old
):
print
'loop through outputs node for both graphs'
'''
t1 = copy.deepcopy(output_new)
t2 = copy.deepcopy(output_old)
# is_same_graph complains if fgraph is not None
t1.fgraph = None
t2.fgraph = None
'''
flag
=
is_same_graph
(
output_new
,
output_old
,
givens
=
givens
)
flags
.
append
(
flag
)
is_same
=
all
(
flags
)
if
is_same
:
# found the match
print
'found
the match
'
print
'found
#TODO: he match, no need to optimize
'
need_optimize
=
False
break
# now optimize or not
if
need_optimize
:
# this is a brand new graph, optimize it, save it to graph_db
import
ipdb
;
ipdb
.
set_trace
()
test_file
=
open
(
theano
.
config
.
compiledir
+
'/test.pkl'
,
'w+'
)
cPickle
.
dump
(
fgraph
,
test_file
)
test_file
.
close
()
test_file
=
open
(
theano
.
config
.
compiledir
+
'/test.pkl'
,
'r'
)
cPickle
.
load
(
test_file
)
print
'Need to optimize the graph'
print
'optimizing 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()
test_file = open(theano.config.compiledir + '/test.pkl', 'w+')
cPickle
.
dump
(
fgraph
,
test_file
)
cPickle.dump(fgraph, test_file
, -1
)
test_file.close()
test_file = open(theano.config.compiledir + '/test.pkl', 'r')
cPickle.load(test_file)
'''
graph_db
.
update
({
before_opt
:
fgraph
})
cPickle
.
dump
(
graph_db
,
f
)
cPickle
.
dump
(
graph_db
,
f
,
-
1
)
print
'saved into graph_db'
else
:
print
'
Do not need to optimize the graph
'
print
'
no opt, get graph from graph_db
'
# just read the optmized graph from graph_db
opt_time
=
0
fgraph
=
graph_db
[
fgraph
]
...
...
@@ -1170,6 +1195,8 @@ class FunctionMaker(object):
opt_time
=
optimize_graph
(
fgraph
)
print
'opt took
%
s'
%
opt_time
import
ipdb
;
ipdb
.
set_trace
()
if
profile
:
profile
.
optimizer_time
+=
opt_time
if
theano
.
config
.
profile_optimizer
:
...
...
theano/tests/test_graph_opt_caching.py
浏览文件 @
543a7812
...
...
@@ -34,6 +34,7 @@ def test_graph_equivalence():
# This does not work.
assert
is_same_graph
(
g1_y
,
g1_y
)
assert
is_same_graph
(
g1_y
,
g1_yy
)
import
ipdb
;
ipdb
.
set_trace
()
assert
is_same_graph
(
g1_y
,
g3_y
,
givens
=
{
g1_a
:
g3_a
,
g1_b
:
g3_b
})
l1
=
theano
.
gof
.
graph
.
inputs
([
g1_y
])
l2
=
theano
.
gof
.
graph
.
inputs
([
g3_y
])
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论