We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30fd973 commit ccc340dCopy full SHA for ccc340d
1 file changed
benches/README.md
@@ -7,7 +7,14 @@ These are some files to determine performance of rustpython.
7
Running `cargo bench` from the root of the repository will start the benchmarks. Once done there will be a graphical
8
report under `target/criterion/report/index.html` that you can use use to view the results.
9
10
-To view Python tracebacks during benchmarks, run `RUST_BACKTRACE=1 cargo bench`. You can also bench against a
+`cargo bench` supports name matching to run a subset of the benchmarks. To
11
+run only the sort microbenchmark, you can run:
12
+
13
+```shell
14
+cargo bench sort
15
+```
16
17
+To view Python tracebacks during benchmarks, run `RUST_BACKTRACE=1 cargo bench`. You can also bench against a
18
specific installed Python version by running:
19
20
```shell
0 commit comments