From f167444c7acf9d0a558b076681c821915f6781b4 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 30 May 2023 16:17:38 +0200 Subject: BS: switch to new dfatool format; add -O and reproduction scripts --- BS/host/app.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'BS/host') diff --git a/BS/host/app.c b/BS/host/app.c index 85587ac..1160163 100644 --- a/BS/host/app.c +++ b/BS/host/app.c @@ -214,20 +214,16 @@ int main(int argc, char **argv) { if (status) { printf("[" ANSI_COLOR_GREEN "OK" ANSI_COLOR_RESET "] results are equal\n"); if (rep >= p.n_warmup) { - printf("[::] n_dpus=%d n_tasklets=%d e_type=%s n_elements=%lu " - "| throughput_cpu_MBps=%f throughput_pim_MBps=%f throughput_MBps=%f\n", + printf("[::] BS NMC | n_dpus=%d n_tasklets=%d e_type=%s n_elements=%lu " + "| throughput_cpu_MBps=%f throughput_pim_MBps=%f throughput_MBps=%f", nr_of_dpus, NR_TASKLETS, XSTR(DTYPE), input_size, num_querys * sizeof(DTYPE) / timer.time[0], num_querys * sizeof(DTYPE) / timer.time[2], num_querys * sizeof(DTYPE) / (timer.time[1] + timer.time[2] + timer.time[3])); - printf("[::] n_dpus=%d n_tasklets=%d e_type=%s n_elements=%lu " - "| throughput_cpu_MOpps=%f throughput_pim_MOpps=%f throughput_MOpps=%f\n", - nr_of_dpus, NR_TASKLETS, XSTR(DTYPE), input_size, + printf(" throughput_cpu_MOpps=%f throughput_pim_MOpps=%f throughput_MOpps=%f", num_querys / timer.time[0], num_querys / timer.time[2], num_querys / (timer.time[1] + timer.time[2] + timer.time[3])); - printf("[::] n_dpus=%d n_tasklets=%d e_type=%s n_elements=%lu |", - nr_of_dpus, NR_TASKLETS, XSTR(DTYPE), input_size); printall(&timer, 3); } } else { -- cgit v1.2.3