aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2026-05-26 00:02:01 +0200
committerPaul Oliver <contact@pauloliver.dev>2026-05-30 15:06:02 +0200
commit2fc73d820d0442ab813c1ac11dff6d7cb1d8f50b (patch)
treef3a4920ca09555fe3a684b4935a7cc2117b3f2d9 /arch
parent848c5cca715c514ce6e57e0fa7ef8e71b09c0b08 (diff)
Adds working data client
Diffstat (limited to 'arch')
-rw-r--r--arch/v1/arch_plots.cpp18
1 files changed, 18 insertions, 0 deletions
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<const char *>({
+#define FOR_CORE(i) \
+ "wmb0_" #i, \
+ "wmb1_" #i, \
+ "wdea_" #i,
+ FOR_CORES
+#undef FOR_CORE
+});
+
+std::array g_arch_plots = std::to_array<Plot>({
+ {"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()