diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-06-01 15:27:02 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-06-01 15:27:02 +0200 |
commit | a27736998b1326f8bdf927b6f856d0592269a895 (patch) | |
tree | 8954294a3d94995bf47fc49a33a91e9b0d04df6d /BFS/baselines/cpu/app.c | |
parent | a169ff00414aec27055862bd971a85072b3babe8 (diff) |
BFS: update dfatool port; add eval scripts
Diffstat (limited to 'BFS/baselines/cpu/app.c')
-rw-r--r-- | BFS/baselines/cpu/app.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/BFS/baselines/cpu/app.c b/BFS/baselines/cpu/app.c index 65cd420..caf4cbc 100644 --- a/BFS/baselines/cpu/app.c +++ b/BFS/baselines/cpu/app.c @@ -150,18 +150,14 @@ int main(int argc, char** argv) { } if (isOK) { - printf("[::] n_threads=%d e_type=%s n_elements=%d " - "| throughput_cpu_ref_MBps=%f throughput_cpu_omp_MBps=%f\n", + printf("[::] BFS CPU | n_threads=%d e_type=%s n_elements=%d " + "| throughput_seq_MBps=%f throughput_MBps=%f", nr_threads, "uint32_t", csrGraph.numNodes, csrGraph.numNodes * sizeof(uint32_t) / timer.time[1], csrGraph.numNodes * sizeof(uint32_t) / timer.time[0]); - printf("[::] n_threads=%d e_type=%s n_elements=%d " - "| throughput_cpu_ref_MOpps=%f throughput_cpu_omp_MOpps=%f\n", - nr_threads, "uint32_t", csrGraph.numNodes, + printf(" throughput_seq_MOpps=%f throughput_MOpps=%f", csrGraph.numNodes / timer.time[1], csrGraph.numNodes / timer.time[0]); - printf("[::] n_threads=%d e_type=%s n_elements=%d |", - nr_threads, "uint32_t", csrGraph.numNodes); printAll(&timer, 1); } |