You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
I'm happy to do work like this from time to time, but I wouldn't want to be the only "line of defense" as I'm not strictly a SwiftFusion code owner. It would be nice to discuss some process for prioritizing and distributing issues like this in the future!
Protocol requirement
Differentiable.zeroTangentVectorInitializer
and computed propertyDifferentiable.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 callingTensor(zeros:on:)
, etc.The text was updated successfully, but these errors were encountered: