diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-02-28 15:07:58 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-02-28 15:07:58 +0100 |
commit | bf8417ee073b8600a738fcc0203674d3cf1ca8fa (patch) | |
tree | 91aef2c83de0cef0a1a61e43e40f881283873705 /VA | |
parent | d53699fb082eb43d52ea7aabf9c62c5fc2502003 (diff) |
VA: n_elements_per_dpu
Diffstat (limited to 'VA')
-rw-r--r-- | VA/host/app.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/VA/host/app.c b/VA/host/app.c index 70377e6..065af72 100644 --- a/VA/host/app.c +++ b/VA/host/app.c @@ -263,8 +263,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("[::] VA UPMEM | n_dpus=%d n_ranks=%d n_tasklets=%d e_type=%s block_size_B=%d n_elements=%d b_sdk_singlethreaded=%d ", - nr_of_dpus, nr_of_ranks, NR_TASKLETS, XSTR(T), BLOCK_SIZE, input_size, SDK_SINGLETHREADED); + printf("[::] VA UPMEM | n_dpus=%d n_ranks=%d n_tasklets=%d e_type=%s block_size_B=%d n_elements=%d n_elements_per_dpu=%d b_sdk_singlethreaded=%d ", + nr_of_dpus, nr_of_ranks, NR_TASKLETS, XSTR(T), BLOCK_SIZE, input_size, input_size / NR_DPUS, SDK_SINGLETHREADED); 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", timer.time[0], timer.time[1], |