Skip to content
Merged
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
Do #362 correctly: Fix the %% in the argparse help, not the docstring
  • Loading branch information
mdboom committed Oct 15, 2024
commit a0391efa00f27635d8339e24b98b1b7c24a71c64
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

1) "none": No actual async work in the async tree.
2) "io": All leaf nodes simulate async IO workload (async sleep 50ms).
3) "memoization": All leaf nodes simulate async IO workload with 90%% of
3) "memoization": All leaf nodes simulate async IO workload with 90% of
the data memoized
4) "cpu_io_mixed": Half of the leaf nodes simulate CPU-bound workload and
the other half simulate the same workload as the
Expand Down Expand Up @@ -159,7 +159,7 @@ def add_parser_args(parser):
Determines which benchmark to run. Options:
1) "none": No actual async work in the async tree.
2) "io": All leaf nodes simulate async IO workload (async sleep 50ms).
3) "memoization": All leaf nodes simulate async IO workload with 90% of
3) "memoization": All leaf nodes simulate async IO workload with 90%% of
the data memoized
4) "cpu_io_mixed": Half of the leaf nodes simulate CPU-bound workload and
the other half simulate the same workload as the
Expand Down