7 references to Atan2Operator
System.Numerics.Tensors (7)
System\Numerics\Tensors\netcore\TensorPrimitives.Atan2.cs (3)
29InvokeSpanSpanIntoSpan<T, Atan2Operator<T>>(y, x, destination); 48InvokeSpanScalarIntoSpan<T, Atan2Operator<T>>(y, x, destination); 67InvokeScalarSpanIntoSpan<T, Atan2Operator<T>>(y, x, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.Atan2Pi.cs (4)
73public static bool Vectorizable => Atan2Operator<T>.Vectorizable; 75public static Vector128<T> Invoke(Vector128<T> y, Vector128<T> x) => Atan2Operator<T>.Invoke(y, x) / Vector128.Create(T.Pi); 76public static Vector256<T> Invoke(Vector256<T> y, Vector256<T> x) => Atan2Operator<T>.Invoke(y, x) / Vector256.Create(T.Pi); 77public static Vector512<T> Invoke(Vector512<T> y, Vector512<T> x) => Atan2Operator<T>.Invoke(y, x) / Vector512.Create(T.Pi);