12 references to MaxOperator_Single
System.Numerics.Tensors (12)
System\Numerics\Tensors\netcore\TensorPrimitives.Max.cs (9)
31if (typeof(T) == typeof(Half) && TryMinMaxHalfAsInt16<T, MaxOperator<float>>(x, out T result)) 36return MinMaxCore<T, MaxOperator<T>>(x); 63if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MaxOperator<float>>(x, y, destination)) 68InvokeSpanSpanIntoSpan<T, MaxOperator<T>>(x, y, destination); 93if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MaxOperator<float>>(x, y, destination)) 98InvokeSpanScalarIntoSpan<T, MaxOperator<T>>(x, y, destination); 161public static T Invoke(Vector128<T> x) => HorizontalAggregate<T, MaxOperator<T>>(x); 162public static T Invoke(Vector256<T> x) => HorizontalAggregate<T, MaxOperator<T>>(x); 163public static T Invoke(Vector512<T> x) => HorizontalAggregate<T, MaxOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Single.netcore.cs (1)
23global using MaxOperator_Single = System.Numerics.Tensors.TensorPrimitives.MaxOperator<float>;
System\Numerics\Tensors\TensorPrimitives.Single.cs (2)
419MinMaxCore<MaxOperator_Single>(x); 443InvokeSpanSpanIntoSpan<MaxOperator_Single>(x, y, destination);