Skip to content

Commit daf59cd

Browse files
committed
Move HashSet-wasm to first, worst, average scoring
Same steps as for the other Wasm line items: - Move files to subdirectory. - Rebuild with up-to-date Emscripten. - Reduce single iteration time, so that we can run multiple iterations (a single iteration before took ~300ms, now ~30ms). - Checked that we spend roughly the same amount of CPU samples in the top-tier and that overall profiles look similar.
1 parent 21b9a95 commit daf59cd

File tree

10 files changed

+975
-1144
lines changed

10 files changed

+975
-1144
lines changed

JetStreamDriver.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1952,13 +1952,14 @@ const BENCHMARKS = [
19521952
testGroup: GeneratorsGroup,
19531953
}),
19541954
// Wasm
1955-
new WasmLegacyBenchmark({
1955+
new WasmEMCCBenchmark({
19561956
name: "HashSet-wasm",
19571957
files: [
1958-
"./wasm/HashSet.js"
1958+
"./wasm/HashSet/build/HashSet.js",
1959+
"./wasm/HashSet/benchmark.js"
19591960
],
19601961
preload: {
1961-
wasmBinary: "./wasm/HashSet.wasm"
1962+
wasmBinary: "./wasm/HashSet/build/HashSet.wasm"
19621963
},
19631964
testGroup: WasmGroup
19641965
}),

0 commit comments

Comments
 (0)