From a7e1d9e67f2ce9709a1df56775c08e3b8985c4ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20B=C3=BCrger?= Date: Fri, 11 Oct 2024 18:27:00 +0100 Subject: [PATCH] lower loop counts a bit for p2p/latency --- Grid/Benchmark_Grid.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Grid/Benchmark_Grid.cpp b/Grid/Benchmark_Grid.cpp index 3f6aa99..8ec0841 100644 --- a/Grid/Benchmark_Grid.cpp +++ b/Grid/Benchmark_Grid.cpp @@ -303,8 +303,8 @@ class Benchmark static void Latency(void) { - int Nwarmup = 1000; - int Nloop = 10000; + int Nwarmup = 500; + int Nloop = 5000; std::cout << GridLogMessage << "Benchmarking point-to-point latency" << std::endl; grid_small_sep(); @@ -382,8 +382,8 @@ class Benchmark // it here size_t bytes = 127401984; - int Nwarmup = 50; - int Nloop = 200; + int Nwarmup = 20; + int Nloop = 100; std::cout << GridLogMessage << "Benchmarking point-to-point bandwidth" << std::endl; grid_small_sep();