7 references to Log2Operator_Single
System.Numerics.Tensors (7)
System\Numerics\Tensors\netcore\TensorPrimitives.Log2.cs (1)
33InvokeSpanIntoSpan<T, Log2Operator<T>>(x, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.Log2P1.cs (4)
38public static bool Vectorizable => Log2Operator<T>.Vectorizable; 40public static Vector128<T> Invoke(Vector128<T> x) => Log2Operator<T>.Invoke(x + Vector128<T>.One); 41public static Vector256<T> Invoke(Vector256<T> x) => Log2Operator<T>.Invoke(x + Vector256<T>.One); 42public 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);