Protocol requirement Differentiable.zeroTangentVectorInitializer and computed property Differentiable.zeroTangentVector are being removed in swiftlang/swift#35329 as a simplification.
"Per-instance zeros" are no longer a concept, there is only the "static universal zero" TangentVector.zero for all tangent vector types.
There are some updates of Differentiable.zeroTangentVector in SwiftFusion. This issue tracks updating those occurrences to use something else (manual implementation of <type>.zeroTangentVector via directly calling Tensor(zeros:on:), etc.
Protocol requirement
Differentiable.zeroTangentVectorInitializerand computed propertyDifferentiable.zeroTangentVectorare being removed in swiftlang/swift#35329 as a simplification."Per-instance zeros" are no longer a concept, there is only the "static universal zero"
TangentVector.zerofor all tangent vector types.There are some updates of
Differentiable.zeroTangentVectorin SwiftFusion. This issue tracks updating those occurrences to use something else (manual implementation of<type>.zeroTangentVectorvia directly callingTensor(zeros:on:), etc.