diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-05 11:53:25 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-05 11:53:25 +0200 |
commit | b3d5310f6c53b15d7715f61f38a0bd423a829791 (patch) | |
tree | d409969fd702c4100b1552d920fdcbbd16738b70 | |
parent | f4e5bca49a26f13788d275c352a1268a6e65b1c0 (diff) |
GEMV: nits
-rw-r--r-- | GEMV/baselines/cpu/gemv_openmp.c | 2 | ||||
-rw-r--r-- | GEMV/host/app.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/GEMV/baselines/cpu/gemv_openmp.c b/GEMV/baselines/cpu/gemv_openmp.c index 38de1d4..be003fd 100644 --- a/GEMV/baselines/cpu/gemv_openmp.c +++ b/GEMV/baselines/cpu/gemv_openmp.c @@ -119,7 +119,7 @@ int main(int argc, char *argv[]) start(&timer, 0, 0); gemv(A, x, rows, cols, &b); stop(&timer, 0); - printf("[::] GEMV CPU | n_threads=%d e_type=%s n_elements=%ld" + printf("[::] GEMV-CPU | n_threads=%d e_type=%s n_elements=%ld" #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 diff --git a/GEMV/host/app.c b/GEMV/host/app.c index ef0f2e5..c2b73f7 100644 --- a/GEMV/host/app.c +++ b/GEMV/host/app.c @@ -306,7 +306,7 @@ int main(int argc, char **argv) { if (status) { printf("[" ANSI_COLOR_GREEN "OK" ANSI_COLOR_RESET "] Outputs are equal\n"); if (rep >= p.n_warmup) { - printf("[::] GEMV UPMEM | n_dpus=%d n_ranks=%d n_tasklets=%d e_type=%s block_size_B=%d n_elements=%d", + printf("[::] GEMV-UPMEM | n_dpus=%d n_ranks=%d n_tasklets=%d e_type=%s block_size_B=%d n_elements=%d", NR_DPUS, nr_of_ranks, NR_TASKLETS, XSTR(T), BLOCK_SIZE, n_size * m_size); printf(" b_with_alloc_overhead=%d b_with_load_overhead=%d b_with_free_overhead=%d numa_node_rank=%d ", WITH_ALLOC_OVERHEAD, WITH_LOAD_OVERHEAD, WITH_FREE_OVERHEAD, numa_node_rank); |