Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
b5ff8452
提交
b5ff8452
authored
7月 26, 2017
作者:
Reyhane Askari
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
change of check_stack_trace value names
上级
7834b546
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
15 行增加
和
12 行删除
+15
-12
configdefaults.py
theano/configdefaults.py
+7
-6
opt.py
theano/gof/opt.py
+8
-6
没有找到文件。
theano/configdefaults.py
浏览文件 @
b5ff8452
...
@@ -1506,12 +1506,13 @@ AddConfigVar('cycle_detection',
...
@@ -1506,12 +1506,13 @@ AddConfigVar('cycle_detection',
in_c_key
=
False
)
in_c_key
=
False
)
AddConfigVar
(
'check_stack_trace'
,
AddConfigVar
(
'check_stack_trace'
,
"A flag for checking the stack trace during the optimization"
"A flag for checking the stack trace during the optimization process. "
" process. The default is not checking the stack trace of any"
"default (off): does not check the stack trace of any optimization "
" optimization. check_all checks if the stack trace is added"
"log: inserts a dummy stack trace that identifies the optimization"
" and check_and_skip checks all the stack trace of optimizations"
"that inserted that variable."
" but skips the ones that have a dummy value "
,
"warn: prints a warning if a stack trace is missing"
EnumStr
(
'not_checking'
,
'check_and_skip'
,
'check_all'
),
"raise: raises an exception if a stack trace is missing"
,
EnumStr
(
'off'
,
'log'
,
'warn'
,
'raise'
),
in_c_key
=
False
)
in_c_key
=
False
)
...
...
theano/gof/opt.py
浏览文件 @
b5ff8452
...
@@ -3043,18 +3043,20 @@ def check_stack_trace(f_or_fgraph, ops_to_check='last', bug_print='raise'):
...
@@ -3043,18 +3043,20 @@ def check_stack_trace(f_or_fgraph, ops_to_check='last', bug_print='raise'):
class
CheckStrackTraceFeature
(
object
):
class
CheckStrackTraceFeature
(
object
):
def
on_import
(
self
,
fgraph
,
node
,
reason
):
def
on_import
(
self
,
fgraph
,
node
,
reason
):
if
theano
.
config
.
check_stack_trace
==
'check_all'
:
if
theano
.
config
.
check_stack_trace
!=
'off'
and
not
check_stack_trace
(
fgraph
,
'all'
):
if
not
check_stack_trace
(
fgraph
,
'all'
):
if
theano
.
config
.
check_stack_trace
==
'warn'
:
warnings
.
warn
(
'Empty stack trace! The optimization that inserted this variable is'
+
str
(
reason
))
if
theano
.
config
.
check_stack_trace
==
'raise'
:
raise
NotImplementedError
(
raise
NotImplementedError
(
'Empty stack trace! The optimization that inserted that variable is'
+
str
(
reason
))
'Empty stack trace! The optimization that inserted this variable is'
+
str
(
reason
))
if
theano
.
config
.
check_stack_trace
==
'check_and_skip'
:
if
theano
.
config
.
check_stack_trace
==
'log'
:
if
not
check_stack_trace
(
fgraph
,
'all'
):
apply_nodes_to_check
=
fgraph
.
apply_nodes
apply_nodes_to_check
=
fgraph
.
apply_nodes
for
node
in
apply_nodes_to_check
:
for
node
in
apply_nodes_to_check
:
for
output
in
node
.
outputs
:
for
output
in
node
.
outputs
:
if
not
hasattr
(
output
.
tag
,
'trace'
)
or
not
output
.
tag
.
trace
:
if
not
hasattr
(
output
.
tag
,
'trace'
)
or
not
output
.
tag
.
trace
:
output
.
tag
.
trace
=
[[(
''
,
0
,
'Empty stack trace! The optimization that'
+
output
.
tag
.
trace
=
[[(
''
,
0
,
'Empty stack trace! The optimization that'
+
'inserted that
variable is '
+
str
(
reason
),
''
)]]
'inserted this
variable is '
+
str
(
reason
),
''
)]]
class
CheckStackTraceOptimization
(
Optimizer
):
class
CheckStackTraceOptimization
(
Optimizer
):
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论