summaryrefslogtreecommitdiff
path: root/RED
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2023-09-25 14:21:29 +0200
committerBirte Kristina Friesel <birte.friesel@uos.de>2023-09-25 14:21:29 +0200
commit60f221cc6cee09ce4b3e22271207e0dc18dcac9d (patch)
treee0bcef57ff9e1b3f350aa767920d2520564962b3 /RED
parent38107459b288cbf72ddbbbd3ca4edd6930fc48eb (diff)
RED: remove stray newline
Diffstat (limited to 'RED')
-rw-r--r--RED/host/app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/RED/host/app.c b/RED/host/app.c
index 3c72a0f..e40fdc6 100644
--- a/RED/host/app.c
+++ b/RED/host/app.c
@@ -239,7 +239,7 @@ int main(int argc, char **argv) {
input_size * sizeof(T) / timer.time[0],
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",
+ printf(" throughput_cpu_MOpps=%f throughput_pim_MOpps=%f throughput_MOpps=%f",
input_size / timer.time[0],
input_size / (timer.time[2] + timer.time[3]),
input_size / (timer.time[1] + timer.time[2] + timer.time[3]));