From d8339a75c9b655c0507e34238078fdad068b4023 Mon Sep 17 00:00:00 2001 From: Tim Hall Date: Thu, 27 May 2021 18:49:40 +0100 Subject: MLBEDSW-4034: New Scheduler Size or Performance Optimisation - Merged dev/scheduler at 83639f90e8c828f70de6e29142355a940224959b Signed-off-by: Tim Hall Change-Id: I0050529d4b42da93768c7264296434dd877fb5b4 --- ethosu/vela/stats_writer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ethosu/vela/stats_writer.py') diff --git a/ethosu/vela/stats_writer.py b/ethosu/vela/stats_writer.py index fbc47f80..32e4fd55 100644 --- a/ethosu/vela/stats_writer.py +++ b/ethosu/vela/stats_writer.py @@ -45,7 +45,7 @@ def write_summary_metrics_csv(nng, summary_filename, arch): ] labels += ( - ["accelerator_configuration", "system_config", "memory_mode", "core_clock", "sram_size"] + ["accelerator_configuration", "system_config", "memory_mode", "core_clock", "arena_cache_size"] + [area.identifier_name() + "_bandwidth" for area in mem_areas] + ["weights_storage_area", "feature_map_storage_area"] ) @@ -89,7 +89,7 @@ def write_summary_metrics_csv(nng, summary_filename, arch): arch.system_config, arch.memory_mode, arch.core_clock, - arch.sram_size / 1024, + arch.arena_cache_size / 1024, ] + [arch.memory_bandwidths_per_second[mem_area] / 1000.0 / 1000 / 1000 for mem_area in mem_areas] + [ -- cgit v1.2.1