Skip to content

Commit cd0e711

Browse files
committed
improves find_output_consumers
1 parent 085d6fa commit cd0e711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tf2onnx/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1262,7 +1262,7 @@ def find_output_consumers(self, output_name):
12621262
ops = self._input_to_node_name[output_name]
12631263
ops = [self.get_node_by_name(n) for n in ops]
12641264
else:
1265-
ops = self.get_nodes()
1265+
ops = [] # self.get_nodes()
12661266
nodes = []
12671267
for node in ops:
12681268
if node is None:

0 commit comments

Comments
 (0)