From 2fc73d820d0442ab813c1ac11dff6d7cb1d8f50b Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Tue, 26 May 2026 00:02:01 +0200 Subject: Adds working data client --- arch/v1/arch_plots.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 arch/v1/arch_plots.cpp (limited to 'arch') diff --git a/arch/v1/arch_plots.cpp b/arch/v1/arch_plots.cpp new file mode 100644 index 0000000..fb49816 --- /dev/null +++ b/arch/v1/arch_plots.cpp @@ -0,0 +1,18 @@ +std::array g_arch_traces = std::to_array({ +#define FOR_CORE(i) \ + "wmb0_" #i, \ + "wmb1_" #i, \ + "wdea_" #i, + FOR_CORES +#undef FOR_CORE +}); + +std::array g_arch_plots = std::to_array({ + {"wevs", "general", { +#define FOR_CORE(i) "wmb0_" #i, "wmb1_" #i, "wdea_" #i, + FOR_CORES +#undef FOR_CORE + }}, +}); + +#define ARCH_PLOT_COUNT g_arch_plots.size() -- cgit v1.3