Skip to content

Commit fd8c9f9

Browse files
committed
Disable warmups during pystats
1 parent 8f063d4 commit fd8c9f9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
### Bugfixes
44

5+
#### No warmups on pystats runs
6+
7+
To prevent "missing" some stats collected during warmup runs, they are now
8+
disabled when collecting pystats.
9+
510
#### Removing a git repo on Windows fails
611

712
One needs to remove the "read only" flags on certain files in the git repo in order to remove it.

bench_runner/scripts/run_benchmarks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def collect_pystats(
145145
if LOOPS_FILE_ENV_VAR not in os.environ:
146146
os.environ[LOOPS_FILE_ENV_VAR] = "loops.json"
147147

148-
extra_args = ["--hook", "pystats"]
148+
extra_args = ["--hook", "pystats", "--warmups", "0"]
149149

150150
if flags is None:
151151
flags = []

0 commit comments

Comments
 (0)