Skip to content

Commit f766564

Browse files
Relax the peak memory resident threshold for WishYouWereFast
1 parent 043456b commit f766564

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Benchmarks/Benchmarks/WishYouWereFast/WishYouWereFast.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ let benchmarks = {
2222
atPath: wishYouWereFast.path
2323
) {
2424
guard file.hasSuffix(".wasm") else { continue }
25-
Benchmark("\(file)") { benchmark in
25+
Benchmark("\(file)", configuration: .init(thresholds: [.peakMemoryResident: .relaxed])) { benchmark in
2626
let engine = Engine()
2727
let store = Store(engine: engine)
2828
let module = try parseWasm(

0 commit comments

Comments
 (0)