Skip to content

Commit 148a113

Browse files
author
Ori Levari
authored
Modify debug_all_outputs.py (#204)
* debug all outputs python script doesn't debug final outputs anymore * update onnx example model * add link to onnx standard motivating omitting final graph output debug operators
1 parent 796e4f9 commit 148a113

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Samples/CustomOperatorCPU/customize_model/scripts/debug_all_outputs.py

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ def create_modified_model(args):
1818
for output in node.output:
1919
intermediate_outputs.add(output)
2020

21+
# remove final graph outputs (see the definition of graph outputs in the onnx standard: https://github.com/onnx/onnx/blob/master/docs/IR.md#user-content-graphs)
22+
# it would be invalid to add debug operators after the final graph outputs since execution must be finished once all outputs are written to
23+
for output in model.graph.output:
24+
intermediate_outputs.remove(output.name)
25+
2126
# create a debug operator that consumes each intermediate output
2227
# debug operator file path attribute is constructed by the name of the intermediate output
2328
for output in intermediate_outputs:

0 commit comments

Comments
 (0)