Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
d8b8a183
提交
d8b8a183
authored
6月 21, 2013
作者:
Frederic
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Make the cvm and c linker raise error message as the vm and c|py linker.
This add the op and the outputs of the apply node in the message error.
上级
8178abbd
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
7 行增加
和
4 行删除
+7
-4
cc.py
theano/gof/cc.py
+3
-4
link.py
theano/gof/link.py
+4
-0
没有找到文件。
theano/gof/cc.py
浏览文件 @
d8b8a183
...
@@ -933,6 +933,7 @@ class CLinker(link.Linker):
...
@@ -933,6 +933,7 @@ class CLinker(link.Linker):
keep_lock
=
keep_lock
)
keep_lock
=
keep_lock
)
res
=
_CThunk
(
cthunk
,
init_tasks
,
tasks
,
error_storage
)
res
=
_CThunk
(
cthunk
,
init_tasks
,
tasks
,
error_storage
)
res
.
nodes
=
self
.
node_order
return
res
,
in_storage
,
out_storage
return
res
,
in_storage
,
out_storage
def
cmodule_key
(
self
):
def
cmodule_key
(
self
):
...
@@ -1391,11 +1392,9 @@ class _CThunk(object):
...
@@ -1391,11 +1392,9 @@ class _CThunk(object):
trace
=
()
trace
=
()
try
:
try
:
exc_type
,
_exc_value
,
exc_trace
=
self
.
error_storage
exc_type
,
_exc_value
,
exc_trace
=
self
.
error_storage
if
hasattr
(
task
,
"outputs"
):
self
.
position_of_error
=
self
.
nodes
.
index
(
task
)
exc_value
=
exc_type
(
_exc_value
,
task
,
task
.
outputs
)
else
:
exc_value
=
exc_type
(
_exc_value
,
task
)
# this can be used to retrieve the location the Op was declared
# this can be used to retrieve the location the Op was declared
exc_value
=
exc_type
(
_exc_value
)
exc_value
.
__thunk_trace__
=
trace
exc_value
.
__thunk_trace__
=
trace
except
Exception
:
except
Exception
:
print
>>
sys
.
stderr
,
(
'ERROR retrieving error_storage.'
print
>>
sys
.
stderr
,
(
'ERROR retrieving error_storage.'
...
...
theano/gof/link.py
浏览文件 @
d8b8a183
...
@@ -108,6 +108,10 @@ def raise_with_op(op, exc_info=None):
...
@@ -108,6 +108,10 @@ def raise_with_op(op, exc_info=None):
if
raise_with_op
.
print_thunk_trace
:
if
raise_with_op
.
print_thunk_trace
:
log_thunk_trace
(
exc_value
)
log_thunk_trace
(
exc_value
)
if
hasattr
(
op
,
"outputs"
):
exc_value
=
exc_type
(
exc_value
,
op
,
op
.
outputs
)
else
:
exc_value
=
exc_type
(
exc_value
,
op
)
raise
exc_type
,
exc_value
,
exc_trace
raise
exc_type
,
exc_value
,
exc_trace
raise_with_op
.
print_thunk_trace
=
False
raise_with_op
.
print_thunk_trace
=
False
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论