summaryrefslogtreecommitdiff
path: root/BS/host
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2023-05-30 16:17:38 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2023-05-30 16:17:38 +0200
commitf167444c7acf9d0a558b076681c821915f6781b4 (patch)
treebdc74846d05b21ea8a2bd6e0a19f35ece8f2b510 /BS/host
parent4bbc83c0ec43b0ede8e4e0fb7f81494ccd65acf8 (diff)
BS: switch to new dfatool format; add -O and reproduction scripts
Diffstat (limited to 'BS/host')
-rw-r--r--BS/host/app.c10
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 {