diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-17 09:46:15 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-17 09:46:15 +0200 |
commit | 5d6b7569c410d70596481fc1ade5458258de02a1 (patch) | |
tree | bf6a0e09fa64d0f54f97b1774a9675fabe021d40 /TRNS/baselines | |
parent | d1047cc7d6c6b9a24ba8df48782ae7aa0bd92949 (diff) |
TRNS DPU version: more fine-grained latency output
Diffstat (limited to 'TRNS/baselines')
-rw-r--r-- | TRNS/baselines/cpu/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TRNS/baselines/cpu/main.cpp b/TRNS/baselines/cpu/main.cpp index e1a3601..09465e4 100644 --- a/TRNS/baselines/cpu/main.cpp +++ b/TRNS/baselines/cpu/main.cpp @@ -288,13 +288,13 @@ int main(int argc, char **argv) { for(int i = 0; i < N_; i++){ std::thread main_thread_3(run_cpu_threads_100, h_in_out + i * M_ * n * m, h_finished + i * M_ * n, h_head + i, M_, n, m, p.n_threads); //M_ * n); main_thread_3.join(); - } + } // end timer if(rep >= p.n_warmup) timer.stop("Step 3"); if (rep >= p.n_warmup) { - printf("[::] TRNS CPU | n_threads=%d e_type=%s n_elements=%d" + printf("[::] TRNS-CPU | n_threads=%d e_type=%s n_elements=%d" #if NUMA " numa_node_in=%d numa_node_out=%d numa_node_cpu=%d numa_distance_in_cpu=%d numa_distance_cpu_out=%d" #endif |