We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82e8971 commit 021c361Copy full SHA for 021c361
Sources/Differentiation/InlineArray+Differentiation.swift
@@ -13,6 +13,8 @@ extension InlineArray: @retroactive Differentiable where Element: Differentiable
13
}
14
15
16
+ // not available yet due to a compiler issue. This is in main as of 2025/05/25. Part of Swift 6.3
17
+ /*
18
@derivative(of: init)
19
@_alwaysEmitIntoClient
20
public static func _vjpInit(repeating value: Element) -> (value: Self, pullback: (TangentVector) -> Element.TangentVector) {
@@ -27,6 +29,7 @@ extension InlineArray: @retroactive Differentiable where Element: Differentiable
27
29
28
30
)
31
32
+ */
33
34
@inlinable
35
public func read(_ i: Index) -> Element {
0 commit comments