We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 043456b commit b9ec29fCopy full SHA for b9ec29f
Benchmarks/Benchmarks/WishYouWereFast/WishYouWereFast.swift
@@ -22,7 +22,10 @@ let benchmarks = {
22
atPath: wishYouWereFast.path
23
) {
24
guard file.hasSuffix(".wasm") else { continue }
25
- Benchmark("\(file)") { benchmark in
+ Benchmark("\(file)", configuration: .init(thresholds: [
26
+ .peakMemoryResident: .relaxed,
27
+ .peakMemoryResidentDelta: .relaxed,
28
+ ])) { benchmark in
29
let engine = Engine()
30
let store = Store(engine: engine)
31
let module = try parseWasm(
0 commit comments