summaryrefslogtreecommitdiff
path: root/Microbenchmarks/STREAM/host
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2023-05-11 14:19:13 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2023-05-11 14:19:13 +0200
commitd4abf7974175fd74bd9e0bbd382b8cb6318fceea (patch)
tree216cb6f1237dca4b4c1d7d075bbd864f6ff9ae2c /Microbenchmarks/STREAM/host
parent6f694912e0828e5cede9df1b44b58e42e28e9d7f (diff)
STREAM: some quality of life improvements
Diffstat (limited to 'Microbenchmarks/STREAM/host')
-rw-r--r--Microbenchmarks/STREAM/host/app.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/Microbenchmarks/STREAM/host/app.c b/Microbenchmarks/STREAM/host/app.c
index 55e9d0f..d77d44b 100644
--- a/Microbenchmarks/STREAM/host/app.c
+++ b/Microbenchmarks/STREAM/host/app.c
@@ -141,7 +141,7 @@ int main(int argc, char **argv) {
if(rep >= p.n_warmup)
stop(&timer, 0);
- printf("Load input data\n");
+ //printf("Load input data\n");
if(rep >= p.n_warmup)
start(&timer, 1, 0);
// Input arguments
@@ -161,7 +161,7 @@ int main(int argc, char **argv) {
if(rep >= p.n_warmup)
stop(&timer, 1);
- printf("Run program on DPU(s) \n");
+ //printf("Run program on DPU(s) \n");
// Run DPU kernel
if(rep >= p.n_warmup)
start(&timer, 2, 0);
@@ -181,7 +181,7 @@ int main(int argc, char **argv) {
}
#endif
- printf("Retrieve results\n");
+ //printf("Retrieve results\n");
if(rep >= p.n_warmup)
start(&timer, 3, 0);
dpu_results_t results[nr_of_dpus];
@@ -266,6 +266,7 @@ int main(int argc, char **argv) {
print(&timer, 2, p.n_reps);
printf("DPU-CPU ");
print(&timer, 3, p.n_reps);
+ printf("\n");
// Deallocation
free(A);