aboutsummaryrefslogtreecommitdiff
path: root/ethosu
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu')
-rw-r--r--ethosu/vela/nn_graph.py1
-rw-r--r--ethosu/vela/stats_writer.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/ethosu/vela/nn_graph.py b/ethosu/vela/nn_graph.py
index 671843f3..30643b85 100644
--- a/ethosu/vela/nn_graph.py
+++ b/ethosu/vela/nn_graph.py
@@ -535,7 +535,6 @@ class Graph:
self.metadata = []
self.memory_used = {}
self.total_original_weights = 0
- self.total_npu_weights = 0
self.total_npu_encoded_weights = 0
self.weight_cache = None # See CompressedWeightCache
self.bandwidths = 0
diff --git a/ethosu/vela/stats_writer.py b/ethosu/vela/stats_writer.py
index f3e2dbac..9db6a97c 100644
--- a/ethosu/vela/stats_writer.py
+++ b/ethosu/vela/stats_writer.py
@@ -59,7 +59,6 @@ def write_summary_metrics_csv(nng, summary_filename, arch):
]
labels += [area.identifier_name() + "_memory_used" for area in mem_areas]
labels += ["total_original_weights"]
- labels += ["total_npu_weights"]
labels += ["total_npu_encoded_weights"]
for mem_area in mem_areas: