6 references to Log10Operator
System.Numerics.Tensors (6)
System\Numerics\Tensors\netcore\TensorPrimitives.Log10.cs (2)
33if (typeof(T) == typeof(Half) && TryUnaryInvokeHalfAsInt16<T, Log10Operator<float>>(x, destination)) 38InvokeSpanIntoSpan<T, Log10Operator<T>>(x, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.Log10P1.cs (4)
45public static bool Vectorizable => Log10Operator<T>.Vectorizable; 47public static Vector128<T> Invoke(Vector128<T> x) => Log10Operator<T>.Invoke(x + Vector128<T>.One); 48public static Vector256<T> Invoke(Vector256<T> x) => Log10Operator<T>.Invoke(x + Vector256<T>.One); 49public static Vector512<T> Invoke(Vector512<T> x) => Log10Operator<T>.Invoke(x + Vector512<T>.One);