diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-09-25 14:21:29 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-09-25 14:21:29 +0200 |
commit | 60f221cc6cee09ce4b3e22271207e0dc18dcac9d (patch) | |
tree | e0bcef57ff9e1b3f350aa767920d2520564962b3 | |
parent | 38107459b288cbf72ddbbbd3ca4edd6930fc48eb (diff) |
RED: remove stray newline
-rw-r--r-- | RED/host/app.c | 2 |
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])); |