Skip to content

Commit e3a8433

Browse files
Reduce Data.hash.Medium multiplier
Co-Authored-By: itaiferber <[email protected]>
1 parent e57ba83 commit e3a8433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/single-source/DataBenchmarks.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public let DataBenchmarks = [
177177
BenchmarkInfo(name: "Data.hash.Small",
178178
runFunction: { hash($0*10_000, data: small) }, tags: d),
179179
BenchmarkInfo(name: "Data.hash.Medium",
180-
runFunction: { hash($0*10_000, data: medium) }, tags: d),
180+
runFunction: { hash($0*1_000, data: medium) }, tags: d),
181181
]
182182

183183
let emptyString = ""

0 commit comments

Comments
 (0)