-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathBenchmark.swift
69 lines (58 loc) · 1.58 KB
/
Benchmark.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
import Foundation
struct BenchmarkResult: Codable {
let name: String
let description: String
let unit: String
let date: Int
let measurements: [Double]
let dimensions: [Dimension]?
}
struct Dimension: Codable {
let name: String
let value: String
}
struct BenchmarkReport: Codable {
let productId: String
let sdkVersion: String?
let commitId: String
let results: [BenchmarkResult]
}
struct BenchmarkRunner {
var iterations: Int
/// Executes the given test multiple times
func runBenchmark(
_ perfTest: PerformanceTest
) async throws -> BenchmarkResult {
var measurements: [Double] = []
for _ in 0..<iterations {
measurements.append(try await perfTest.test())
}
let timestamp = Int(Date().timeIntervalSince1970)
return BenchmarkResult(
name: perfTest.name,
description: perfTest.description,
unit: perfTest.unit,
date: timestamp,
measurements: measurements,
dimensions: perfTest.dimensions
)
}
}
extension BenchmarkReport {
func printFormatted() {
let jsonEncoder = JSONEncoder()
jsonEncoder.outputFormatting = .prettyPrinted
if let jsonData = try? jsonEncoder.encode(self),
let jsonString = String(data: jsonData, encoding: .utf8) {
print(jsonString)
} else {
print("Error encoding JSON")
}
}
}