mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
15 lines
256 B
Swift
15 lines
256 B
Swift
import TestsUtils
|
|
|
|
public let benchmarks = [
|
|
BenchmarkInfo(
|
|
name: "Monoids",
|
|
runFunction: run_Monoids,
|
|
tags: [.algorithm, .miniapplication, .long])
|
|
]
|
|
|
|
func run_Monoids(_ n: Int) async {
|
|
for _ in 0 ... n {
|
|
await run(output: false)
|
|
}
|
|
}
|