12 references to MinOperator_Single
System.Numerics.Tensors (12)
System\Numerics\Tensors\netcore\TensorPrimitives.Min.cs (9)
29if (typeof(T) == typeof(Half) && TryMinMaxHalfAsInt16<T, MinOperator<float>>(x, out T result)) 34return MinMaxCore<T, MinOperator<T>>(x); 61if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MinOperator<float>>(x, y, destination)) 66InvokeSpanSpanIntoSpan<T, MinOperator<T>>(x, y, destination); 91if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MinOperator<float>>(x, y, destination)) 96InvokeSpanScalarIntoSpan<T, MinOperator<T>>(x, y, destination); 159public static T Invoke(Vector128<T> x) => HorizontalAggregate<T, MinOperator<T>>(x); 160public static T Invoke(Vector256<T> x) => HorizontalAggregate<T, MinOperator<T>>(x); 161public static T Invoke(Vector512<T> x) => HorizontalAggregate<T, MinOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Single.netcore.cs (1)
25global using MinOperator_Single = System.Numerics.Tensors.TensorPrimitives.MinOperator<float>;
System\Numerics\Tensors\TensorPrimitives.Single.cs (2)
496MinMaxCore<MinOperator_Single>(x); 520InvokeSpanSpanIntoSpan<MinOperator_Single>(x, y, destination);