diff options
Diffstat (limited to 'BS/host')
-rw-r--r-- | BS/host/app.c | 10 |
1 files changed, 3 insertions, 7 deletions
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 { |