Skip to content

Commit 2aa6b43

Browse files
Update README.md with actual benchmark results
1 parent 2278ad1 commit 2aa6b43

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

README.md

+18-4
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,25 @@ Key files to study:
185185

186186
## Performance
187187

188-
The library is optimized for performance:
188+
The library is optimized for performance. Here are the latest benchmark results:
189189

190-
- Generating an IFS: ~237 ns
191-
- Rendering a small image (100x100, 10,000 points): ~344 μs
192-
- Rendering a medium image (384x384, 100,000 points): ~3.46 ms
190+
- Generating an IFS: ~240 ns (237.38 ns - 243.53 ns)
191+
- Rendering a small image (100x100, 10,000 points): ~344 μs (342.77 μs - 347.09 μs)
192+
- Rendering a medium image (384x384, 100,000 points): ~3.57 ms (3.52 ms - 3.62 ms)
193+
194+
You can reproduce these performance results by running the benchmarks:
195+
196+
```bash
197+
# Run all benchmarks
198+
cargo bench
199+
200+
# Run a specific benchmark
201+
cargo bench -- generate_ifs
202+
cargo bench -- render_small
203+
cargo bench -- render_medium
204+
```
205+
206+
The benchmarks are implemented using the Criterion.rs framework and can be found in the `benches/benchmarks.rs` file. The benchmark results may vary slightly depending on your hardware and system load.
193207

194208
## License
195209

0 commit comments

Comments
 (0)