summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2023-09-21 15:33:05 +0200
committerBirte Kristina Friesel <birte.friesel@uos.de>2023-09-21 15:33:05 +0200
commit0943e306d329549cd3d8af38e4c9811f45f9df46 (patch)
tree76f5d8513d6e9cbab3fd56bbcada82fd6d20cd30
parent7b9abcd1ce738dc161881ce099e3fae4a1a923dc (diff)
VA: remove a stray newline
-rw-r--r--VA/host/app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/VA/host/app.c b/VA/host/app.c
index 3a9b3eb..d680782 100644
--- a/VA/host/app.c
+++ b/VA/host/app.c
@@ -193,7 +193,7 @@ int main(int argc, char **argv) {
input_size * 3 * sizeof(T) / timer.time[0],
input_size * 3 * sizeof(T) / (timer.time[2]),
input_size * 3 * sizeof(T) / (timer.time[1] + timer.time[2] + timer.time[3]));
- printf(" throughput_cpu_MOpps=%f throughput_pim_MOpps=%f throughput_MOpps=%f\n",
+ printf(" throughput_cpu_MOpps=%f throughput_pim_MOpps=%f throughput_MOpps=%f",
input_size / timer.time[0],
input_size / (timer.time[2]),
input_size / (timer.time[1] + timer.time[2] + timer.time[3]));