8000 Add `list.sort` benchmarks by sobolevn · Pull Request #328 · python/pyperformance · GitHub
[go: up one dir, main page]

Skip to content

Add list.sort benchmarks #328

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

Closed
wants to merge 3 commits into from
Closed
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
More items in a list
  • Loading branch information
sobolevn committed Feb 7, 2024
commit be80d82dac6dcbc96c0a1b94a45bca336c6d389f
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def add_parser_args(parser) -> None:
)


DEFAULT_SIZE = 65536 # 1 << 16
DEFAULT_SIZE = 262144 # 1 << 18
DEFAULT_RANDOM_SEED = 0
BENCHMARKS = {
"list_sort": list_sort,
Expand Down
0