From 07b9417e916a86513ef6bed8ae9716a83e3e0d20 Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Fri, 20 Jun 2025 11:58:54 -0400 Subject: [PATCH] Revert "Disable warmups during pystats" --- CHANGELOG.md | 5 ----- bench_runner/scripts/run_benchmarks.py | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 504e179..675a9c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,6 @@ ### Bugfixes -#### No warmups on pystats runs - -To prevent "missing" some stats collected during warmup runs, they are now -disabled when collecting pystats. - #### Removing a git repo on Windows fails One needs to remove the "read only" flags on certain files in the git repo in order to remove it. diff --git a/bench_runner/scripts/run_benchmarks.py b/bench_runner/scripts/run_benchmarks.py index 293e50c..5a0e204 100644 --- a/bench_runner/scripts/run_benchmarks.py +++ b/bench_runner/scripts/run_benchmarks.py @@ -145,7 +145,7 @@ def collect_pystats( if LOOPS_FILE_ENV_VAR not in os.environ: os.environ[LOOPS_FILE_ENV_VAR] = "loops.json" - extra_args = ["--hook", "pystats", "--warmups", "0"] + extra_args = ["--hook", "pystats"] if flags is None: flags = []