5 references to AcosOperator
System.Numerics.Tensors (5)
System\Numerics\Tensors\netcore\TensorPrimitives.Acos.cs (1)
26InvokeSpanIntoSpan<T, AcosOperator<T>>(x, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.AcosPi.cs (4)
32public static bool Vectorizable => AcosOperator<T>.Vectorizable; 34public static Vector128<T> Invoke(Vector128<T> x) => AcosOperator<T>.Invoke(x) / Vector128.Create(T.Pi); 35public static Vector256<T> Invoke(Vector256<T> x) => AcosOperator<T>.Invoke(x) / Vector256.Create(T.Pi); 36public static Vector512<T> Invoke(Vector512<T> x) => AcosOperator<T>.Invoke(x) / Vector512.Create(T.Pi);