Skip to content
Snippets Groups Projects
Commit 414578c9 authored by Tobi-Alonso's avatar Tobi-Alonso
Browse files

[ModelWrapper] Small change to find_producer that should make it run twice as fast on average

parent a2fe20d1
No related branches found
No related tags found
No related merge requests found
......@@ -259,11 +259,10 @@ class ModelWrapper:
def find_producer(self, tensor_name):
"""Finds and returns the node that produces the tensor with given name."""
ret = None
for x in self._model_proto.graph.node:
if tensor_name in x.output:
ret = x
return ret
return x
return None
def find_upstream(self, tensor_name, finder_fxn):
"""Follow the producer chain upstream, calling finder_fxn on each upstream
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment