summaryrefslogtreecommitdiff
path: root/BFS/host
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2023-06-01 15:27:02 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2023-06-01 15:27:02 +0200
commita27736998b1326f8bdf927b6f856d0592269a895 (patch)
tree8954294a3d94995bf47fc49a33a91e9b0d04df6d /BFS/host
parenta169ff00414aec27055862bd971a85072b3babe8 (diff)
BFS: update dfatool port; add eval scripts
Diffstat (limited to 'BFS/host')
-rw-r--r--BFS/host/app.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/BFS/host/app.c b/BFS/host/app.c
index e4ed9b5..44154e2 100644
--- a/BFS/host/app.c
+++ b/BFS/host/app.c
@@ -297,18 +297,14 @@ int main(int argc, char** argv) {
}
if (status) {
- printf("[::] n_dpus=%d n_tasklets=%d e_type=%s n_elements=%d "
- "| throughput_pim_MBps=%f throughput_MBps=%f\n",
+ printf("[::] BFS NMC | n_dpus=%d n_tasklets=%d e_type=%s n_elements=%d "
+ "| throughput_pim_MBps=%f throughput_MBps=%f",
numDPUs, NR_TASKLETS, "uint32_t", numNodes,
numNodes * sizeof(uint32_t) / (timer.time[2]),
numNodes * sizeof(uint32_t) / (timer.time[0] + timer.time[1] + timer.time[2] + timer.time[3] + timer.time[4]));
- printf("[::] n_dpus=%d n_tasklets=%d e_type=%s n_elements=%d "
- "| throughput_pim_MOpps=%f throughput_MOpps=%f\n",
- numDPUs, NR_TASKLETS, "uint32_t", numNodes,
+ printf(" throughput_pim_MOpps=%f throughput_MOpps=%f",
numNodes / (timer.time[2]),
numNodes / (timer.time[0] + timer.time[1] + timer.time[2] + timer.time[3] + timer.time[4]));
- printf("[::] n_dpus=%d n_tasklets=%d e_type=%s n_elements=%d |",
- numDPUs, NR_TASKLETS, "uint32_t", numNodes);
printAll(&timer, 4);
}