We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c83ba1d commit 3d19323Copy full SHA for 3d19323
benches/benches/bevy_ecs/commands.rs
@@ -39,7 +39,7 @@ fn spawning_commands(criterion: &mut Criterion) {
39
group.warm_up_time(std::time::Duration::from_millis(500));
40
group.measurement_time(std::time::Duration::from_secs(3));
41
42
- for i in 1..10 {
+ for i in (1..5).map(|i| i * 2) {
43
let entity_count = i * 1000;
44
45
group.bench_function(format!("spawn_{}_entities", entity_count), |bencher| {
@@ -65,7 +65,7 @@ fn rng_spawning_commands(criterion: &mut Criterion) {
65
66
67
68
69
70
71
group.bench_function(format!("spawn_{}_entities_rng", entity_count), |bencher| {
0 commit comments