Skip to content

Commit a788df4

Browse files
committed
Reduce to 30k
1 parent 3a85967 commit a788df4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benches/execution.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ pub fn benchmark_file(c: &mut Criterion, name: &str, contents: &str) {
4343

4444
pub fn benchmark_pystone(c: &mut Criterion) {
4545
let mut group = c.benchmark_group("pystone");
46-
// Default is 50_000
47-
for idx in (10_000..=50_000).step_by(10_000) {
46+
// Default is 50_000. This takes a while, so reduce it to 30k.
47+
for idx in (10_000..=30_000).step_by(10_000) {
4848
let code_with_loops = format!("LOOPS = {}\n{}", idx, PYSTONE);
4949
let code_str = code_with_loops.as_str();
5050

0 commit comments

Comments
 (0)