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
- 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.
0 commit comments