diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-15 08:34:31 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-15 08:34:31 +0200 |
commit | 4d6056a19a5ab3a0355f92f2a6967a0384fd3920 (patch) | |
tree | 2c5391c1d6ca338afaf2ef1ecc620ead98d57c16 | |
parent | 5976e5c372ce0eded29b628c6b233fca77762975 (diff) |
Revert "GEMV CPU version: log latency"
This reverts commit 4f9ab55e5278ee3b248b20f3541d289ebfb4d585.
-rw-r--r-- | GEMV/baselines/cpu/gemv_openmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GEMV/baselines/cpu/gemv_openmp.c b/GEMV/baselines/cpu/gemv_openmp.c index ac96be6..ed7b794 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 - " | latency_us=%f throughput_MBps=%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 - timer.time[0], rows * cols * sizeof(T) / timer.time[0]); + rows * cols * sizeof(T) / timer.time[0]); printf(" throughput_MOpps=%f", rows * cols / timer.time[0]); printall(&timer, 0); |