diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-11 11:35:17 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-11 11:35:17 +0200 |
commit | b95a66b300b14852eea90ecc232b3c35e159b3a9 (patch) | |
tree | 889f7ea27787709a00ba4e62b135d426fe03aadd /GEMV | |
parent | 06a23dfe883be72f0ea4b1530efee6773c73ecf3 (diff) |
GEMV baseline: correctly log data type
Diffstat (limited to 'GEMV')
-rw-r--r-- | GEMV/baselines/cpu/gemv_openmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GEMV/baselines/cpu/gemv_openmp.c b/GEMV/baselines/cpu/gemv_openmp.c index 870e06c..ed7b794 100644 --- a/GEMV/baselines/cpu/gemv_openmp.c +++ b/GEMV/baselines/cpu/gemv_openmp.c @@ -139,7 +139,7 @@ int main(int argc, char *argv[]) " numa_node_in=%d numa_node_out=%d numa_node_cpu=%d numa_distance_in_cpu=%d numa_distance_cpu_out=%d" #endif " | throughput_MBps=%f", - nr_threads, STR(T), rows * cols, + nr_threads, XSTR(T), rows * cols, #if NUMA numa_node_in, numa_node_out, numa_node_cpu, numa_distance(numa_node_in, numa_node_cpu), numa_distance(numa_node_cpu, numa_node_out), #endif |