summaryrefslogtreecommitdiff
path: root/Microbenchmarks/STREAM
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2023-05-11 14:45:31 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2023-05-11 14:45:31 +0200
commita5034624539e5eee9641965344403d9585139709 (patch)
tree9cf20d174774e9862f59edfb3dc1bb450ed050b7 /Microbenchmarks/STREAM
parenta66f19fd7319f89224e1b6c9787ef2a9d996bde0 (diff)
STREAM: remove timing output
Diffstat (limited to 'Microbenchmarks/STREAM')
-rw-r--r--Microbenchmarks/STREAM/host/app.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/Microbenchmarks/STREAM/host/app.c b/Microbenchmarks/STREAM/host/app.c
index 4d96e8d..163dd4c 100644
--- a/Microbenchmarks/STREAM/host/app.c
+++ b/Microbenchmarks/STREAM/host/app.c
@@ -260,17 +260,6 @@ int main(int argc, char **argv) {
}
printf("DPU cycles = %g cc\n", cc / p.n_reps);
- // Print timing results
- printf("CPU ");
- print(&timer, 0, p.n_reps);
- printf("CPU-DPU ");
- print(&timer, 1, p.n_reps);
- printf("DPU Kernel ");
- print(&timer, 2, p.n_reps);
- printf("DPU-CPU ");
- print(&timer, 3, p.n_reps);
- printf("\n");
-
// Deallocation
free(A);
free(B);