Skip to content

Commit 583b2b0

Browse files
committed
[benchmark] Fix names
1 parent 66ece21 commit 583b2b0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

benchmark/single-source/PrimsNonStrongRef.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public let PrimsNonStrongRef: [BenchmarkInfo] = ({
4545
}))
4646
// TODO: Stabilize weak benchmark.
4747
benchmarks.append(BenchmarkInfo(
48-
name: "Prims.NonStrongRef.Weak.ClosureAccess",
48+
name: "Prims.NonStrongRef.Weak.Closure",
4949
runFunction: run_PrimsWeakClosureAccess,
5050
tags: [.validation, .algorithm],
5151
setUpFunction: {
@@ -62,7 +62,7 @@ public let PrimsNonStrongRef: [BenchmarkInfo] = ({
6262
blackHole(unownedSafePrimsState)
6363
}))
6464
benchmarks.append(BenchmarkInfo(
65-
name: "Prims.NonStrongRef.UnownedSafe.ClosureAccess",
65+
name: "Prims.NonStrongRef.UnownedSafe.Closure",
6666
runFunction: run_PrimsUnownedSafeClosureAccess,
6767
tags: [.validation, .algorithm],
6868
setUpFunction: {
@@ -78,7 +78,7 @@ public let PrimsNonStrongRef: [BenchmarkInfo] = ({
7878
blackHole(unownedUnsafePrimsState)
7979
}))
8080
benchmarks.append(BenchmarkInfo(
81-
name: "Prims.NonStrongRef.UnownedUnsafe.ClosureAccess",
81+
name: "Prims.NonStrongRef.UnownedUnsafe.Closure",
8282
runFunction: run_PrimsUnownedUnsafeClosureAccess,
8383
tags: [.validation, .algorithm],
8484
setUpFunction: {
@@ -94,7 +94,7 @@ public let PrimsNonStrongRef: [BenchmarkInfo] = ({
9494
blackHole(unmanagedPrimsState)
9595
}))
9696
benchmarks.append(BenchmarkInfo(
97-
name: "Prims.NonStrongRef.Unmanaged.ClosureAccess",
97+
name: "Prims.NonStrongRef.Unmanaged.Closure",
9898
runFunction: run_PrimsUnmanagedClosureAccess,
9999
tags: [.validation, .algorithm, .api],
100100
setUpFunction: {
@@ -110,7 +110,7 @@ public let PrimsNonStrongRef: [BenchmarkInfo] = ({
110110
blackHole(unmanagedUGRPrimsState)
111111
}))
112112
benchmarks.append(BenchmarkInfo(
113-
name: "Prims.NonStrongRef.UnmanagedUGR.ClosureAccess",
113+
name: "Prims.NonStrongRef.UnmanagedUGR.Closure",
114114
runFunction: run_PrimsUnmanagedUGRClosureAccess,
115115
tags: [.validation, .algorithm, .api],
116116
setUpFunction: {

0 commit comments

Comments
 (0)