We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 043456b commit 0be76eaCopy full SHA for 0be76ea
Benchmarks/Benchmarks/WishYouWereFast/WishYouWereFast.swift
@@ -22,7 +22,9 @@ 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
+ ])) { benchmark in
28
let engine = Engine()
29
let store = Store(engine: engine)
30
let module = try parseWasm(
0 commit comments