Skip to content

Commit

Permalink
NNIR_to_OpenVX - Remove Debug Print
Browse files Browse the repository at this point in the history
Removed Output Tensor Debug Print
  • Loading branch information
kiritigowda authored Feb 19, 2019
1 parent cd33629 commit cb24bf2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions model_compiler/python/nnir_to_openvx.py
Original file line number Diff line number Diff line change
Expand Up @@ -1759,9 +1759,7 @@ def main():
outputFolder = sys.argv[pos+1]
print('reading IR model from ' + inputFolder + ' ...')
graph = IrGraph()
graph.fromFile(inputFolder)
for tensor in graph.outputs:
print('#OUTPUT-TENSOR: %s %d %d %d %d ' %(tensor.name, tensor.shape[0], tensor.shape[1], tensor.shape[2], tensor.shape[3]));
graph.fromFile(inputFolder)
print('creating C code in ' + outputFolder + ' ...')
generateCode(graph,argmaxOutput,outputFolder)

Expand Down

1 comment on commit cb24bf2

@rrawther
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a comment which was required for anninferenceServer APP. Please revert the change

Please sign in to comment.