Skip to content

Commit 3dbc349

Browse files
committed
Address comments from the PR
1 parent 3dc1057 commit 3dbc349

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bench_runner/scripts/workflow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def compile_unix(cpython: PathLike, flags: list[str], pgo: bool, pystats: bool)
150150

151151
args = []
152152
if pystats:
153-
args.append("--with-pystats")
153+
args.append("--enable-pystats")
154154
if pgo:
155155
args.extend(["--enable-optimizations", "--with-lto=full"])
156156
if "PYTHON_UOPS" in flags:
@@ -290,7 +290,7 @@ def _main(
290290
if Path(".debug").exists():
291291
shutil.rmtree(".debug")
292292

293-
pystats_dir = Path("/tmp") / "pystats"
293+
pystats_dir = Path("/tmp") / "py_stats"
294294
if pystats:
295295
shutil.rmtree(pystats_dir, ignore_errors=True)
296296
pystats_dir.mkdir(parents=True)

0 commit comments

Comments
 (0)