9 references to MinNumberOperator
System.Numerics.Tensors (9)
System\Numerics\Tensors\netcore\TensorPrimitives.MinNumber.cs (9)
27if (typeof(T) == typeof(Half) && TryMinMaxHalfAsInt16<T, MinNumberOperator<float>>(x, out T result))
32return MinMaxCore<T, MinNumberOperator<T>>(x);
59if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MinNumberOperator<float>>(x, y, destination))
64InvokeSpanSpanIntoSpan<T, MinNumberOperator<T>>(x, y, destination);
89if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MinNumberOperator<float>>(x, y, destination))
94InvokeSpanScalarIntoSpan<T, MinNumberOperator<T>>(x, y, destination);
161public static T Invoke(Vector128<T> x) => HorizontalAggregate<T, MinNumberOperator<T>>(x);
162public static T Invoke(Vector256<T> x) => HorizontalAggregate<T, MinNumberOperator<T>>(x);
163public static T Invoke(Vector512<T> x) => HorizontalAggregate<T, MinNumberOperator<T>>(x);