diff --git a/model_compiler/python/nnir_to_openvx.py b/model_compiler/python/nnir_to_openvx.py index 3edcc9b7df..6bef79a776 100644 --- a/model_compiler/python/nnir_to_openvx.py +++ b/model_compiler/python/nnir_to_openvx.py @@ -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)