We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a85967 commit a788df4Copy full SHA for a788df4
1 file changed
benches/execution.rs
@@ -43,8 +43,8 @@ pub fn benchmark_file(c: &mut Criterion, name: &str, contents: &str) {
43
44
pub fn benchmark_pystone(c: &mut Criterion) {
45
let mut group = c.benchmark_group("pystone");
46
- // Default is 50_000
47
- for idx in (10_000..=50_000).step_by(10_000) {
+ // Default is 50_000. This takes a while, so reduce it to 30k.
+ for idx in (10_000..=30_000).step_by(10_000) {
48
let code_with_loops = format!("LOOPS = {}\n{}", idx, PYSTONE);
49
let code_str = code_with_loops.as_str();
50
0 commit comments