Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
ff354011
提交
ff354011
authored
5月 03, 2011
作者:
Frederic Bastien
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix bug with the new lock behavior introduced yesterday.
上级
bcf400ec
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
2 行增加
和
6 行删除
+2
-6
cc.py
theano/gof/cc.py
+2
-6
没有找到文件。
theano/gof/cc.py
浏览文件 @
ff354011
...
@@ -1154,7 +1154,6 @@ class OpWiseCLinker(link.LocalLinker):
...
@@ -1154,7 +1154,6 @@ class OpWiseCLinker(link.LocalLinker):
# C code. We will keep the lock untill all the function
# C code. We will keep the lock untill all the function
# compilation will be finished. This allow to don't
# compilation will be finished. This allow to don't
# require the lock when all c code are already compiled!
# require the lock when all c code are already compiled!
keep_lock
=
True
orig_n_lock
=
getattr
(
get_lock
,
"n_lock"
,
0
)
orig_n_lock
=
getattr
(
get_lock
,
"n_lock"
,
0
)
try
:
try
:
...
@@ -1194,14 +1193,11 @@ class OpWiseCLinker(link.LocalLinker):
...
@@ -1194,14 +1193,11 @@ class OpWiseCLinker(link.LocalLinker):
thunk
,
node_input_filters
,
node_output_filters
=
cl
.
make_thunk
(
thunk
,
node_input_filters
,
node_output_filters
=
cl
.
make_thunk
(
input_storage
=
node_input_storage
,
input_storage
=
node_input_storage
,
output_storage
=
node_output_storage
,
output_storage
=
node_output_storage
,
keep_lock
=
keep
_lock
)
keep_lock
=
getattr
(
get_lock
,
"n_lock"
,
0
)
!=
orig_n
_lock
)
assert
callable
(
thunk
)
assert
callable
(
thunk
)
thunk
.
inputs
=
node_input_storage
thunk
.
inputs
=
node_input_storage
thunk
.
outputs
=
node_output_storage
thunk
.
outputs
=
node_output_storage
thunks
.
append
(
thunk
)
thunks
.
append
(
thunk
)
if
keep_lock
and
get_lock
.
n_lock
>
orig_n_lock
:
keep_lock
=
False
do_python_thunk
=
False
do_python_thunk
=
False
except
(
NotImplementedError
,
utils
.
MethodNotDefined
):
except
(
NotImplementedError
,
utils
.
MethodNotDefined
):
thunk
=
None
thunk
=
None
...
@@ -1241,7 +1237,7 @@ class OpWiseCLinker(link.LocalLinker):
...
@@ -1241,7 +1237,7 @@ class OpWiseCLinker(link.LocalLinker):
finally
:
finally
:
# Release lock on compilation directory.
# Release lock on compilation directory.
if
get
_lock
.
n_lock
>
orig_n_lock
:
if
get
attr
(
get_lock
,
"n_lock"
,
0
)
>
orig_n_lock
:
release_lock
()
release_lock
()
assert
get_lock
.
n_lock
==
orig_n_lock
assert
get_lock
.
n_lock
==
orig_n_lock
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论