the OOB feature is `TensorPrimitives`, which is math APIs over `ROSpan<T>` (so `TensorPrimitives.Log

the OOB feature is TensorPrimitives, which is math APIs over ROSpan<T> (so TensorPrimitives.Log(ROSpan<float> x, Span<float> destination))
in .NET 9, that will expand to where T : IFloatingPointIeee754<T>
and also to Vector128.Log(Vector128<float> x) and friends (+ double overloads)
Was this page helpful?