diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-08 16:26:40 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-08 16:26:40 +0100 |
commit | 51347235f2a4b8f9d987ede6da76527cb13d7fb7 (patch) | |
tree | 0a8850544f4e4f35c8928521c2618dbc70118413 /RED | |
parent | 21f8f730b0b9e41f4345fb7195a31705f02a5a48 (diff) |
RED: log number of ranks
Diffstat (limited to 'RED')
-rw-r--r-- | RED/host/app.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RED/host/app.c b/RED/host/app.c index 2e5d715..934226e 100644 --- a/RED/host/app.c +++ b/RED/host/app.c @@ -280,8 +280,8 @@ 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("[::] RED UPMEM | n_dpus=%d n_tasklets=%d e_type=%s block_size_B=%d n_elements=%d", - NR_DPUS, NR_TASKLETS, XSTR(T), BLOCK_SIZE, input_size); + printf("[::] RED 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, input_size); printf(" b_with_alloc_overhead=%d b_with_load_overhead=%d b_with_free_overhead=%d ", WITH_ALLOC_OVERHEAD, WITH_LOAD_OVERHEAD, WITH_FREE_OVERHEAD); printf("| latency_alloc_us=%f latency_load_us=%f latency_cpu_us=%f latency_write_us=%f latency_kernel_us=%f latency_read_us=%f latency_free_us=%f", |