diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2026-05-26 00:02:01 +0200 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2026-05-30 15:06:02 +0200 |
| commit | 2fc73d820d0442ab813c1ac11dff6d7cb1d8f50b (patch) | |
| tree | f3a4920ca09555fe3a684b4935a7cc2117b3f2d9 /arch/v1 | |
| parent | 848c5cca715c514ce6e57e0fa7ef8e71b09c0b08 (diff) | |
Adds working data client
Diffstat (limited to 'arch/v1')
| -rw-r--r-- | arch/v1/arch_plots.cpp | 18 |
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() |
