aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/stats_writer.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/stats_writer.py')
-rw-r--r--ethosu/vela/stats_writer.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ethosu/vela/stats_writer.py b/ethosu/vela/stats_writer.py
index 25c9030..b743a5f 100644
--- a/ethosu/vela/stats_writer.py
+++ b/ethosu/vela/stats_writer.py
@@ -1,4 +1,4 @@
-# SPDX-FileCopyrightText: Copyright 2020-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
+# SPDX-FileCopyrightText: Copyright 2020-2022, 2024 Arm Limited and/or its affiliates <open-source-office@arm.com>
#
# SPDX-License-Identifier: Apache-2.0
#
@@ -365,11 +365,11 @@ def print_performance_metrics(nng, arch, show_cpu_operations=False, verbose_weig
for sg in nng.subgraphs:
if sg.placement == PassPlacement.Cpu:
- for op in sg.get_all_ops():
+ for op in sg.get_all_ops_from_passes():
if op.type not in ir_only_ops:
cpu_operations.append(op)
elif sg.placement == PassPlacement.Npu:
- for op in sg.get_all_ops():
+ for op in sg.get_all_ops_from_passes():
if op.type not in ir_only_ops:
npu_operations.append(op)