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