Skip to content

Commit ea72931

Browse files
committed
Reduce Kotlin-compose-wasm iteration count
Kotlin-compose-wasm is the longest running test in JS3 by a pretty wide margin. However after the first few iterations almost all code is in the most optimizing compiler in the respective engines. This change reduces the iterations to 5 and sets adjusts the worst case count accordingly.
1 parent 24b1911 commit ea72931

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

JetStreamDriver.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2489,8 +2489,8 @@ let BENCHMARKS = [
24892489
inputFontItalic: "./Kotlin-compose/build/jetbrainsmono_italic.ttf",
24902490
inputFontRegular: "./Kotlin-compose/build/jetbrainsmono_regular.ttf"
24912491
},
2492-
iterations: 15,
2493-
worstCaseCount: 2,
2492+
iterations: 5,
2493+
worstCaseCount: 1,
24942494
tags: ["default", "Wasm"],
24952495
}),
24962496
new AsyncBenchmark({

0 commit comments

Comments
 (0)