From 2022f4ec450f58e7d16a9d7b36d7846ba938f3ef Mon Sep 17 00:00:00 2001 From: Anjan Roy Date: Fri, 22 Dec 2023 20:24:36 +0400 Subject: [PATCH] set benchmark repetition to 10 Signed-off-by: Anjan Roy --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5e253fa..bf68a5b 100644 --- a/Makefile +++ b/Makefile @@ -99,7 +99,7 @@ $(PERF_BINARY): $(PERF_OBJECTS) perf: $(PERF_BINARY) # Must build google-benchmark with libPFM, follow https://gist.github.com/itzmeanjan/05dc3e946f635d00c5e0b21aae6203a7 - ./$< --benchmark_min_warmup_time=.1 --benchmark_enable_random_interleaving=true --benchmark_repetitions=8 --benchmark_min_time=0.1s --benchmark_counters_tabular=true --benchmark_display_aggregates_only=true --benchmark_perf_counters=CYCLES + ./$< --benchmark_min_warmup_time=.1 --benchmark_enable_random_interleaving=true --benchmark_repetitions=10 --benchmark_min_time=0.1s --benchmark_counters_tabular=true --benchmark_display_aggregates_only=true --benchmark_perf_counters=CYCLES .PHONY: format clean