Skip to content
Snippets Groups Projects
Commit 578c0429 authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Fixed get_op_stats()

parent 355863bb
No related branches found
No related tags found
No related merge requests found
Pipeline #67947 waiting for manual action
...@@ -60,7 +60,7 @@ class DynamicAnalysis(aidge_core.DynamicAnalysis): ...@@ -60,7 +60,7 @@ class DynamicAnalysis(aidge_core.DynamicAnalysis):
if node.type() == "Producer": if node.type() == "Producer":
continue continue
stats = self.get_op_stats(node) stats = aidge_core.OperatorStats.get_op_stats(node)
name = namePtrTable[node] name = namePtrTable[node]
attr = {} attr = {}
if type(node.get_operator()) is aidge_core.GenericOperatorOp: if type(node.get_operator()) is aidge_core.GenericOperatorOp:
......
...@@ -96,7 +96,7 @@ class StaticAnalysis(aidge_core.StaticAnalysis): ...@@ -96,7 +96,7 @@ class StaticAnalysis(aidge_core.StaticAnalysis):
if node.type() == "Producer": if node.type() == "Producer":
continue continue
stats = self.get_op_stats(node) stats = aidge_core.OperatorStats.get_op_stats(node)
name = namePtrTable[node] name = namePtrTable[node]
attr = {} attr = {}
if type(node.get_operator()) is aidge_core.GenericOperatorOp: if type(node.get_operator()) is aidge_core.GenericOperatorOp:
......
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