Skip to content

Commit 22283d9

Browse files
committed
Merge branch 'main' into wip-no-escape-group
2 parents de5fdcd + 6e0267f commit 22283d9

File tree

86 files changed

+2290
-2087
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+2290
-2087
lines changed

benchmark/single-source/Differentiation.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public func run_DifferentiationIdentity(N: Int) {
4040
x
4141
}
4242
for _ in 0..<1000*N {
43-
blackHole(valueWithGradient(at: 1, in: f))
43+
blackHole(valueWithGradient(at: 1, of: f))
4444
}
4545
}
4646

@@ -50,7 +50,7 @@ public func run_DifferentiationSquare(N: Int) {
5050
x * x
5151
}
5252
for _ in 0..<1000*N {
53-
blackHole(valueWithGradient(at: 1, in: f))
53+
blackHole(valueWithGradient(at: 1, of: f))
5454
}
5555
}
5656

@@ -66,7 +66,7 @@ public func run_DifferentiationArraySum(N: Int) {
6666
return result
6767
}
6868
for _ in 0..<N {
69-
blackHole(valueWithGradient(at: onesArray, in: sum))
69+
blackHole(valueWithGradient(at: onesArray, of: sum))
7070
}
7171
}
7272

0 commit comments

Comments
 (0)