5 references to Exp10Operator
System.Numerics.Tensors (5)
System\Numerics\Tensors\netcore\TensorPrimitives.Exp10.cs (2)
27if (typeof(T) == typeof(Half) && TryUnaryInvokeHalfAsInt16<T, Exp10Operator<float>>(x, destination)) 32InvokeSpanIntoSpan<T, Exp10Operator<T>>(x, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.Exp10M1.cs (3)
42public static Vector128<T> Invoke(Vector128<T> x) => Exp10Operator<T>.Invoke(x) - Vector128<T>.One; 43public static Vector256<T> Invoke(Vector256<T> x) => Exp10Operator<T>.Invoke(x) - Vector256<T>.One; 44public static Vector512<T> Invoke(Vector512<T> x) => Exp10Operator<T>.Invoke(x) - Vector512<T>.One;