blob: fb49816c8cd75d64a484e8e14e4225036bb3716d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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()
|