From 0118d5173e849135527bba960139213f09d4b19c Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 7 Jun 2023 14:55:26 +0200 Subject: RED, SCAN-RSS, SEL, UNI: account for inter-dpu sync in pim kernel time --- RED/host/app.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'RED/host') diff --git a/RED/host/app.c b/RED/host/app.c index eefb696..3c72a0f 100644 --- a/RED/host/app.c +++ b/RED/host/app.c @@ -237,11 +237,11 @@ int main(int argc, char **argv) { "| throughput_cpu_MBps=%f throughput_pim_MBps=%f throughput_MBps=%f", nr_of_dpus, NR_TASKLETS, XSTR(T), BLOCK_SIZE, input_size, input_size * sizeof(T) / timer.time[0], - input_size * sizeof(T) / (timer.time[2]), + input_size * sizeof(T) / (timer.time[2] + timer.time[3]), input_size * sizeof(T) / (timer.time[1] + timer.time[2] + timer.time[3])); printf(" throughput_cpu_MOpps=%f throughput_pim_MOpps=%f throughput_MOpps=%f\n", input_size / timer.time[0], - input_size / (timer.time[2]), + input_size / (timer.time[2] + timer.time[3]), input_size / (timer.time[1] + timer.time[2] + timer.time[3])); printall(&timer, 3); } -- cgit v1.2.3