9 references to MinNumberOperator
System.Numerics.Tensors (9)
System\Numerics\Tensors\netcore\TensorPrimitives.MinNumber.cs (9)
30if (typeof(T) == typeof(Half) && TryMinMaxHalfAsInt16<T, MinNumberOperator<float>>(x, out T result)) 35return MinMaxCore<T, MinNumberOperator<T>>(x); 62if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MinNumberOperator<float>>(x, y, destination)) 67InvokeSpanSpanIntoSpan<T, MinNumberOperator<T>>(x, y, destination); 92if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MinNumberOperator<float>>(x, y, destination)) 97InvokeSpanScalarIntoSpan<T, MinNumberOperator<T>>(x, y, destination); 164public static T Invoke(Vector128<T> x) => HorizontalAggregate<T, MinNumberOperator<T>>(x); 165public static T Invoke(Vector256<T> x) => HorizontalAggregate<T, MinNumberOperator<T>>(x); 166public static T Invoke(Vector512<T> x) => HorizontalAggregate<T, MinNumberOperator<T>>(x);