You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+23
Original file line number
Diff line number
Diff line change
@@ -347,6 +347,29 @@ example would explicitly use `Timeout::new`. For example:
347
347
/// # }
348
348
```
349
349
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
+
350
373
### Commits
351
374
352
375
It is a recommended best practice to keep your changes as logically grouped as
0 commit comments