From 0f9e16add75e5d5de0463241120cf4584194b7e6 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 16 Apr 2026 03:18:10 +0200 Subject: Makes event array compression multi-threaded --- arch/v1/arch_vars.py | 3 ++- 1 file changed, 2 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 4fb6bb2..9605f85 100644 --- a/arch/v1/arch_vars.py +++ b/arch/v1/arch_vars.py @@ -76,6 +76,7 @@ class ArchVars: self.core_fields = [] self.core_data_fields = [ + ("uint64_t", "ipop", f"[{len(self.inst_set)}]"), # instruction population counter ("uint64_t", "iexe", f"[{len(self.inst_set)}]"), # instruction execution counter ("uint64_t", "iwrt", f"[{len(self.inst_set)}]"), # instruction write counter @@ -113,7 +114,7 @@ class ArchVars: self.plots = { "General": { "wevs": { - "table": "arch_general", + "table": "arch", "type": "lines", "cols": [f"{pref}_{i}" for pref in ["wmb0", "wmb1", "wdea"] for i in range(args.cores)], }, -- cgit v1.3