File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,14 @@ These are some files to determine performance of rustpython.
7
7
Running ` cargo bench ` from the root of the repository will start the benchmarks. Once done there will be a graphical
8
8
report under ` target/criterion/report/index.html ` that you can use use to view the results.
9
9
10
- To view Python tracebacks during benchmarks, run ` RUST_BACKTRACE=1 cargo bench ` . You can also bench against a
10
+ ` 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
11
18
specific installed Python version by running:
12
19
13
20
``` shell
You can’t perform that action at this time.
0 commit comments