Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bench_runner/scripts/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,10 @@ def compile_windows(
args = ["--%"] # This is the PowerShell "stop parsing" flag
if force_32bit:
args.extend(["-p", "win32"])
args.extend(["-c", "Release"])
if pgo:
args.append("--pgo")
else:
args.extend(["-c", "Release"])
if "JIT" in flags:
args.append("--experimental-jit")
if "PYTHON_UOPS" in flags:
Expand Down