Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
9f0560f2
提交
9f0560f2
authored
7月 22, 2014
作者:
Hengjean
提交者:
Frederic
10月 21, 2014
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fixed if range.
上级
d0c93bbe
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
26 行增加
和
28 行删除
+26
-28
function_module.py
theano/compile/function_module.py
+26
-28
没有找到文件。
theano/compile/function_module.py
浏览文件 @
9f0560f2
...
...
@@ -1077,35 +1077,33 @@ class FunctionMaker(object):
need_optimize
=
False
get_lock
()
key
=
None
'''
graph_db and need_optimize
'''
if
os
.
path
.
isfile
(
graph_db_file
):
print
'graph_db exists'
else
:
# create graph_db
f
=
open
(
graph_db_file
,
'w+b'
)
print
'created new graph_db
%
s'
%
graph_db_file
f
.
close
# load the graph_db dictionary
try
:
f
=
open
(
graph_db_file
,
'r+b'
)
tmp
=
theano
.
config
.
unpickle_function
theano
.
config
.
unpickle_function
=
False
graph_db
=
cPickle
.
load
(
f
)
theano
.
config
.
unpickle_function
=
tmp
f
.
close
()
print
'graph_db is not empty'
except
EOFError
,
e
:
# the file has nothing in it
print
e
print
'graph_db is empty'
graph_db
=
{}
print
'loaded graph_db from
%
s, size=
%
d'
%
(
graph_db_file
,
len
(
graph_db
))
if
theano
.
config
.
cache_optimizations
:
'''
graph_db and need_optimize
'''
if
os
.
path
.
isfile
(
graph_db_file
):
print
'graph_db exists'
else
:
# create graph_db
f
=
open
(
graph_db_file
,
'w+b'
)
print
'created new graph_db
%
s'
%
graph_db_file
f
.
close
# load the graph_db dictionary
try
:
f
=
open
(
graph_db_file
,
'r+b'
)
tmp
=
theano
.
config
.
unpickle_function
theano
.
config
.
unpickle_function
=
False
graph_db
=
cPickle
.
load
(
f
)
theano
.
config
.
unpickle_function
=
tmp
f
.
close
()
print
'graph_db is not empty'
except
EOFError
,
e
:
# the file has nothing in it
print
e
print
'graph_db is empty'
graph_db
=
{}
need_optimize
=
True
print
'loaded graph_db from
%
s, size=
%
d'
%
(
graph_db_file
,
len
(
graph_db
))
# the sole purpose of this loop is to set 'need_optimize'
for
i
,
graph_old
in
enumerate
(
graph_db
.
keys
()):
inputs_old
=
graph_old
.
inputs
...
...
@@ -1179,7 +1177,7 @@ class FunctionMaker(object):
need_optimize
=
False
key
=
graph_old
break
# now optimize or not
if
need_optimize
:
# this is a brand new graph, optimize it, save it to graph_db
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论