Skip to content

Commit f9f5be3

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 f9f5be3

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

JetStreamDriver.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2109,14 +2109,18 @@ let BENCHMARKS = [
21092109
files: [
21102110
"./simple/doxbee-promise.js",
21112111
],
2112-
tags: ["default", "js", "promise", "Simple"],
2112+
iterations: 80,
2113+
worstCaseCount: 3,
2114+
tags: ["default", "js", "promise", "Simple", "Doxbee"],
21132115
}),
21142116
new AsyncBenchmark({
21152117
name: "doxbee-async",
21162118
files: [
21172119
"./simple/doxbee-async.js",
21182120
],
2119-
tags: ["default", "js", "Simple"],
2121+
iterations: 80,
2122+
worstCaseCount: 3,
2123+
tags: ["default", "js", "async", "Simple", "Doxbee"],
21202124
}),
21212125
// SeaMonster
21222126
new DefaultBenchmark({
@@ -2489,8 +2493,8 @@ let BENCHMARKS = [
24892493
inputFontItalic: "./Kotlin-compose/build/jetbrainsmono_italic.ttf",
24902494
inputFontRegular: "./Kotlin-compose/build/jetbrainsmono_regular.ttf"
24912495
},
2492-
iterations: 15,
2493-
worstCaseCount: 2,
2496+
iterations: 5,
2497+
worstCaseCount: 1,
24942498
tags: ["default", "Wasm"],
24952499
}),
24962500
new AsyncBenchmark({

0 commit comments

Comments
 (0)