8 references to Log2Operator_Single
System.Numerics.Tensors (8)
System\Numerics\Tensors\netcore\TensorPrimitives.Log2.cs (2)
34if (typeof(T) == typeof(Half) && TryUnaryInvokeHalfAsInt16<T, Log2Operator<float>>(x, destination)) 39InvokeSpanIntoSpan<T, Log2Operator<T>>(x, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.Log2P1.cs (4)
45public static bool Vectorizable => Log2Operator<T>.Vectorizable; 47public static Vector128<T> Invoke(Vector128<T> x) => Log2Operator<T>.Invoke(x + Vector128<T>.One); 48public static Vector256<T> Invoke(Vector256<T> x) => Log2Operator<T>.Invoke(x + Vector256<T>.One); 49public static Vector512<T> Invoke(Vector512<T> x) => Log2Operator<T>.Invoke(x + Vector512<T>.One);
System\Numerics\Tensors\netcore\TensorPrimitives.Single.netcore.cs (1)
22global using Log2Operator_Single = System.Numerics.Tensors.TensorPrimitives.Log2Operator<float>;
System\Numerics\Tensors\TensorPrimitives.Single.cs (1)
402InvokeSpanIntoSpan<Log2Operator_Single>(x, destination);