From b1f78f2cddbcf1e137acb13c31b46e06d3012c58 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Sat, 11 Apr 2026 14:07:37 +0200 Subject: Adds heatmaps --- arch/v1/arch_vars.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'arch/v1/arch_vars.py') diff --git a/arch/v1/arch_vars.py b/arch/v1/arch_vars.py index 65c5e87..b9d4c4f 100644 --- a/arch/v1/arch_vars.py +++ b/arch/v1/arch_vars.py @@ -83,7 +83,7 @@ class ArchVars: ("uint64_t", "wmb1", ""), # writes within mb1 counter ("uint64_t", "wdea", ""), # writes within dead code counter - #("uint64_t", "weva", f"[{2 ** args.mvec_pow}]"), # write events array + ("uint64_t", "weva", f"[{2 ** args.mvec_pow}]"), # write events array ] self.data_is_compressed = True @@ -138,3 +138,11 @@ class ArchVars: } for i in range(args.cores) }, } + + self.heatmaps = { + "Events": { + f"wev_{i}": { + "table": f"wev_{i}", + } for i in range(args.cores) + } + } -- cgit v1.2.1