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
{{ message }}
This repository was archived by the owner on Mar 30, 2022. It is now read-only.
On the S4TF toolchain, I can use static transcendental functions on SIMD types like this: let powSimd = SIMD2.pow(mySimd, 2)
On the normal Xcode toolchain, this is not available. A cursory exploration suggests that on the S4TF toolchain, SIMD types have been conformed to ElementaryFunctions, which is part of the Numerics library (is that true?).
Is there a way to get these functions on the normal Xcode toolchain? Are they on track to be mainlined? Are they only implemented on S4TF so far? import Numerics doesn't seem to give me those functions.