Skip to content

Commit 4c453e9

Browse files
authored
readme: add description about benchmarks (#6425)
1 parent 1846483 commit 4c453e9

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,10 @@ jobs:
210210
run: cargo hack test --each-feature
211211
working-directory: tests-build
212212

213-
# Check benchmarks. Run of benchmarks is done by bench.yml workflow.
213+
# Check benchmarks.
214214
- name: Check benches
215215
run: cargo check --benches
216216
working-directory: benches
217-
# bench.yml workflow runs benchmarks only on linux.
218217
if: startsWith(matrix.os, 'ubuntu')
219218

220219
test-parking_lot:

CONTRIBUTING.md

+23
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,29 @@ example would explicitly use `Timeout::new`. For example:
347347
/// # }
348348
```
349349

350+
### Benchmarks
351+
352+
You can run benchmarks locally for the changes you've made to the tokio codebase.
353+
Tokio currently uses [Criterion](https://github.com/bheisler/criterion.rs) as its benchmarking tool. To run a benchmark
354+
against the changes you have made, for example, you can run;
355+
356+
```bash
357+
cd benches
358+
359+
# Run all benchmarks.
360+
cargo bench
361+
362+
# Run all tests in the `benches/fs.rs` file
363+
cargo bench --bench fs
364+
365+
# Run the `async_read_buf` benchmark in `benches/fs.rs` specifically.
366+
cargo bench async_read_buf
367+
368+
# After running benches, you can check the statistics under `tokio/target/criterion/`
369+
```
370+
371+
You can also refer to Criterion docs for additional options and details.
372+
350373
### Commits
351374
352375
It is a recommended best practice to keep your changes as logically grouped as

0 commit comments

Comments
 (0)