Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
7c5bfadc
提交
7c5bfadc
authored
10月 06, 2014
作者:
Caglar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fixed typos and scan_ops in debugmode.
上级
451f7b8f
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
20 行增加
和
8 行删除
+20
-8
debugmode.py
theano/compile/debugmode.py
+20
-8
没有找到文件。
theano/compile/debugmode.py
浏览文件 @
7c5bfadc
...
...
@@ -494,7 +494,8 @@ def char_from_number(number):
def
debugprint
(
r
,
prefix
=
''
,
depth
=-
1
,
done
=
None
,
print_type
=
False
,
file
=
sys
.
stdout
,
print_destroy_map
=
False
,
print_view_map
=
False
,
order
=
None
,
ids
=
'CHAR'
,
stop_on_name
=
False
,
prefix_child
=
None
):
stop_on_name
=
False
,
prefix_child
=
None
,
scan_ops
=
None
):
"""Print the graph leading to `r` to given depth.
:param r: Variable instance
...
...
@@ -502,10 +503,10 @@ def debugprint(r, prefix='', depth=-1, done=None, print_type=False,
:param depth: maximum recursion depth (Default -1 for unlimited).
:param done: dict of Apply instances that have already been printed
and their associated printed ids
:param print_type: wether to print the Variable type after the other infos
:param print_type: w
h
ether to print the Variable type after the other infos
:param file: file-like object to which to print
:param print_destroy_map: w
ether to print the op destroy_map after of
ther info
:param print_view_map: w
ether to print the op view_map after of
ther info
:param print_destroy_map: w
hether to print the op destroy_map after o
ther info
:param print_view_map: w
hether to print the op view_map after o
ther info
:param order: If not empty will print the index in the toposort.
:param ids: How do we print the identifier of the variable
id - print the python id value
...
...
@@ -514,6 +515,8 @@ def debugprint(r, prefix='', depth=-1, done=None, print_type=False,
"" - don't print an identifier
:param stop_on_name: When True, if a node in the graph has a name,
we don't print anything below it.
:param scan_ops: Scan ops in the graph will be added inside this list
for later printing purposes.
"""
if
depth
==
0
:
...
...
@@ -525,6 +528,9 @@ def debugprint(r, prefix='', depth=-1, done=None, print_type=False,
if
done
is
None
:
done
=
dict
()
if
scan_ops
is
None
:
scan_ops
=
[]
if
print_type
:
type_str
=
' <
%
s>'
%
r
.
type
else
:
...
...
@@ -547,7 +553,7 @@ def debugprint(r, prefix='', depth=-1, done=None, print_type=False,
done
[
obj
]
=
id_str
return
id_str
if
hasattr
(
r
.
owner
,
'op'
):
if
hasattr
(
r
,
'owner'
)
and
hasattr
(
r
.
owner
,
'op'
):
# this variable is the output of computation,
# so just print out the apply
a
=
r
.
owner
...
...
@@ -575,6 +581,7 @@ def debugprint(r, prefix='', depth=-1, done=None, print_type=False,
o
=
''
if
order
:
o
=
str
(
order
.
index
(
r
.
owner
))
already_printed
=
a
in
done
# get_id_str put it in the dict
id_str
=
get_id_str
(
a
)
...
...
@@ -602,10 +609,16 @@ def debugprint(r, prefix='', depth=-1, done=None, print_type=False,
if
idx
==
len
(
a
.
inputs
)
-
1
:
new_prefix_child
=
prefix_child
+
' '
if
hasattr
(
i
,
'owner'
)
and
hasattr
(
i
.
owner
,
'op'
):
if
i
.
owner
.
op
is
not
None
:
if
isinstance
(
i
.
owner
.
op
,
theano
.
scan_module
.
scan_op
.
Scan
):
scan_ops
.
append
(
i
)
debugprint
(
i
,
new_prefix
,
depth
=
depth
-
1
,
done
=
done
,
print_type
=
print_type
,
file
=
file
,
order
=
order
,
ids
=
ids
,
stop_on_name
=
stop_on_name
,
prefix_child
=
new_prefix_child
)
prefix_child
=
new_prefix_child
,
scan_ops
=
scan_ops
)
else
:
#this is an input variable
id_str
=
get_id_str
(
r
)
...
...
@@ -624,7 +637,6 @@ def _optcheck_fgraph(input_specs, output_specs, accept_inplace=False):
:type accept_inplace: Bool
:rtype: `FunctionGraph`
:returns: a new FunctionGraph with a cloned graph, with debugging `Feature` instances already installed.
"""
orig_inputs
=
[
spec
.
variable
for
spec
in
input_specs
]
updates
=
[
spec
.
update
for
spec
in
input_specs
if
spec
.
update
]
...
...
@@ -2152,7 +2164,7 @@ class _Maker(FunctionMaker): # inheritance buys a few helper functions
# Check if some input variables are unused
self
.
_check_unused_inputs
(
inputs
,
outputs
,
on_unused_input
)
# Make a list of (SymbolicInput|SymblicInputKits, indices, [SymbolicInput,...]), one
# Make a list of (SymbolicInput|SymblicInputKits, indices, [SymbolicInput,...]), one
# tuple for each input. (See Function.indices for more details)
indices
=
[[
input
]
+
self
.
expand_in
(
input
,
_inputs
)
for
input
in
inputs
]
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论