8000 Add a feature for using the same number of loops as a previous run by mdboom · Pull Request #327 · python/pyperformance · GitHub
[go: up one dir, main page]

Skip to content

Add a feature for using the same number of loops as a previous run #327

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Feb 2, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Don't pass hardcoded warmups
  • Loading branch information
mdboom committed Feb 1, 2024
commit 14cd648f33db50539dce9ccf8bcde8c4b02ca39a
1 change: 0 additions & 1 deletion pyperformance/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ def add_bench(dest_suite, obj):

if name in loops:
pyperf_opts.append(f"--loops={loops[name]}")
pyperf_opts.append("--warmups=1")

bench_venv, bench_runid = benchmarks.get(bench)
if bench_venv is None:
Expand Down
0