From 4f9ab55e5278ee3b248b20f3541d289ebfb4d585 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Fri, 12 Jul 2024 10:14:40 +0200 Subject: GEMV CPU version: log latency --- GEMV/baselines/cpu/gemv_openmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GEMV/baselines/cpu/gemv_openmp.c b/GEMV/baselines/cpu/gemv_openmp.c index ed7b794..ac96be6 100644 --- a/GEMV/baselines/cpu/gemv_openmp.c +++ b/GEMV/baselines/cpu/gemv_openmp.c @@ -138,12 +138,12 @@ int main(int argc, char *argv[]) #if NUMA " 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", + " | latency_us=%f throughput_MBps=%f", 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 - rows * cols * sizeof(T) / timer.time[0]); + timer.time[0], rows * cols * sizeof(T) / timer.time[0]); printf(" throughput_MOpps=%f", rows * cols / timer.time[0]); printall(&timer, 0); -- cgit v1.2.3