Skip to content

Commit

Permalink
Decreasing sample size to 200
Browse files Browse the repository at this point in the history
  • Loading branch information
rrtoledo committed Jan 17, 2025
1 parent 4747de0 commit bd21a68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benches/centralized_telescope/number_steps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ mod criterion_group {
use super::{criterion_group, step_benches, Criterion, Duration, Steps};

criterion_group!(name = centralized_step;
config = Criterion::default().with_measurement(Steps).measurement_time(Duration::from_secs(30)).sample_size(500);
config = Criterion::default().with_measurement(Steps).measurement_time(Duration::from_secs(30)).sample_size(200);
targets = step_benches
);
}
Expand Down
2 changes: 1 addition & 1 deletion benches/centralized_telescope/proving_time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ mod criterion_group {
use super::{criterion_group, proving_benches, Criterion, Duration};

criterion_group!(name = centralized_proving_time;
config = Criterion::default().measurement_time(Duration::from_secs(30)).sample_size(500);
config = Criterion::default().measurement_time(Duration::from_secs(30)).sample_size(200);
targets = proving_benches
);
}
Expand Down
2 changes: 1 addition & 1 deletion benches/centralized_telescope/verifying_time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ mod criterion_group {
use super::{criterion_group, verify_benches, Criterion, Duration};

criterion_group!(name = centralized_verifying_time;
config = Criterion::default().measurement_time(Duration::from_secs(30)).sample_size(500);
config = Criterion::default().measurement_time(Duration::from_secs(30)).sample_size(200);
targets = verify_benches
);
}
Expand Down

0 comments on commit bd21a68

Please sign in to comment.