Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
acf5e176
提交
acf5e176
authored
11月 28, 2014
作者:
Arnaud Bergeron
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add configuration variables for the compile lock times.
上级
cc703505
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
32 行增加
和
25 行删除
+32
-25
compilelock.py
theano/gof/compilelock.py
+32
-25
没有找到文件。
theano/gof/compilelock.py
浏览文件 @
acf5e176
...
...
@@ -9,6 +9,7 @@ import time
import
logging
from
theano
import
config
from
theano.configparser
import
AddConfigVar
,
IntParam
_logger
=
logging
.
getLogger
(
"theano.gof.compilelock"
)
# If the user provided a logging level, we don't want to override it.
...
...
@@ -16,31 +17,28 @@ if _logger.level == logging.NOTSET:
# INFO will show the the messages "Refreshing lock" message
_logger
.
setLevel
(
logging
.
INFO
)
# In seconds, time that a process will wait before deciding to override an
# existing lock. An override only happens when the existing lock is held by
# the same owner *and* has not been 'refreshed' by this owner for more than
# 'timeout_before_override' seconds.
timeout_before_override
=
120
AddConfigVar
(
'compile.wait'
,
"""Time to wait before retrying to aquire the compile lock. If you
raise this be sure to also raise 'compile.timeout' by a proportionate
amount."""
,
IntParam
(
5
,
lambda
i
:
i
>
0
,
allow_override
=
False
),
in_c_key
=
False
)
# In seconds, duration before a lock is refreshed. More precisely, the lock is
# refreshed each time 'get_lock()' is called (typically for each file being
# compiled) and the existing lock has not been refreshed in the past
# 'refresh_every' seconds.
refresh_every
=
60
AddConfigVar
(
'compile.timeout'
,
"""In seconds, time that a process will wait before deciding to
override an existing lock. An override only happens when the existing
lock is held by the same owner *and* has not been 'refreshed' by this
owner for more than this period."""
,
IntParam
(
120
,
lambda
i
:
i
>=
0
,
allow_override
=
False
),
in_c_key
=
False
)
def
force_unlock
():
"""
Delete the compilation lock if someone else has it.
"""
global
timeout_before_override
timeout_backup
=
timeout_before_override
timeout_before_override
=
0
try
:
get_lock
(
min_wait
=
0
,
max_wait
=
0.001
)
release_lock
()
finally
:
timeout_before_override
=
timeout_backup
get_lock
(
min_wait
=
0
,
max_wait
=
0.001
,
timeout
=
0
)
release_lock
()
def
get_lock
(
lock_dir
=
None
,
**
kw
):
...
...
@@ -74,16 +72,17 @@ def get_lock(lock_dir=None, **kw):
if
get_lock
.
lock_is_enabled
:
# Only really try to acquire the lock if we do not have it already.
if
get_lock
.
n_lock
==
0
:
lock
(
get_lock
.
lock_dir
,
timeout
=
timeout_before_override
,
**
kw
)
lock
(
get_lock
.
lock_dir
,
**
kw
)
atexit
.
register
(
Unlocker
.
unlock
,
get_lock
.
unlocker
)
# Store time at which the lock was set.
get_lock
.
start_time
=
time
.
time
()
else
:
# Check whether we need to 'refresh' the lock. We do this every
# 'refresh_every' seconds to ensure noone else tries to override
# our lock after their 'timeout_before_override' timeout period.
# Check whether we need to 'refresh' the lock. We do this
# every 'config.compile.timeout / 2' seconds to ensure
# noone else tries to override our lock after their
# 'config.compile.timeout' timeout period.
now
=
time
.
time
()
if
now
-
get_lock
.
start_time
>
refresh_every
:
if
now
-
get_lock
.
start_time
>
config
.
compile
.
timeout
/
2
:
lockpath
=
os
.
path
.
join
(
get_lock
.
lock_dir
,
'lock'
)
_logger
.
info
(
'Refreshing lock
%
s'
,
str
(
lockpath
))
refresh_lock
(
lockpath
)
...
...
@@ -114,8 +113,10 @@ def set_lock_status(use_lock):
"""
get_lock
.
lock_is_enabled
=
use_lock
# This is because None is a valid input for timeout
notset
=
object
()
def
lock
(
tmp_dir
,
timeout
=
120
,
min_wait
=
5
,
max_wait
=
10
,
verbosity
=
1
):
def
lock
(
tmp_dir
,
timeout
=
notset
,
min_wait
=
None
,
max_wait
=
None
,
verbosity
=
1
):
"""
Obtain lock access by creating a given temporary directory (whose base will
be created if needed, but will not be deleted after the lock is removed).
...
...
@@ -149,6 +150,12 @@ def lock(tmp_dir, timeout=120, min_wait=5, max_wait=10, verbosity=1):
@param verbosity: amount of feedback displayed to screen
@type verbosity: int
"""
if
min_wait
is
None
:
min_wait
=
config
.
compile
.
wait
if
max_wait
is
None
:
max_wait
=
min_wait
*
2
if
timeout
is
notset
:
timeout
=
config
.
compile
.
timeout
# Create base of lock directory if required.
base_lock
=
os
.
path
.
dirname
(
tmp_dir
)
if
not
os
.
path
.
isdir
(
base_lock
):
...
...
@@ -207,7 +214,7 @@ def lock(tmp_dir, timeout=120, min_wait=5, max_wait=10, verbosity=1):
continue
if
last_owner
==
read_owner
:
if
(
timeout
is
not
None
and
time
.
time
()
-
time_start
>=
timeout
):
time
.
time
()
-
time_start
>=
timeout
):
# Timeout exceeded or locking process dead.
if
not
no_display
:
if
read_owner
==
'failure'
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论