From be401517a935bb1200ead9ed3ff11082ceb87210 Mon Sep 17 00:00:00 2001 From: Anjan Roy Date: Tue, 5 Dec 2023 22:35:51 +0400 Subject: [PATCH] increase number of benchmark repetitions Signed-off-by: Anjan Roy --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 031a2d9..341464b 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,7 @@ $(BENCHMARK_BINARY): $(BENCHMARK_OBJECTS) benchmark: $(BENCHMARK_BINARY) # Must *not* build google-benchmark with libPFM - ./$< --benchmark_time_unit=us --benchmark_min_warmup_time=.5 --benchmark_enable_random_interleaving=true --benchmark_repetitions=8 --benchmark_min_time=0.1s --benchmark_display_aggregates_only=true --benchmark_counters_tabular=true + ./$< --benchmark_time_unit=us --benchmark_min_warmup_time=.5 --benchmark_enable_random_interleaving=true --benchmark_repetitions=10 --benchmark_min_time=0.1s --benchmark_display_aggregates_only=true --benchmark_counters_tabular=true $(PERF_BINARY): $(BENCHMARK_OBJECTS) $(CXX) $(OPT_FLAGS) $(LINK_FLAGS) $^ $(PERF_LINK_FLAGS) -o $@