12 references to MaxOperator_Single
System.Numerics.Tensors (12)
System\Numerics\Tensors\netcore\TensorPrimitives.Max.cs (9)
29if (typeof(T) == typeof(Half) && TryMinMaxHalfAsInt16<T, MaxOperator<float>>(x, out T result)) 34return MinMaxCore<T, MaxOperator<T>>(x); 61if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MaxOperator<float>>(x, y, destination)) 66InvokeSpanSpanIntoSpan<T, MaxOperator<T>>(x, y, destination); 91if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MaxOperator<float>>(x, y, destination)) 96InvokeSpanScalarIntoSpan<T, MaxOperator<T>>(x, y, destination); 159public static T Invoke(Vector128<T> x) => HorizontalAggregate<T, MaxOperator<T>>(x); 160public static T Invoke(Vector256<T> x) => HorizontalAggregate<T, MaxOperator<T>>(x); 161public 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)
416MinMaxCore<MaxOperator_Single>(x); 440InvokeSpanSpanIntoSpan<MaxOperator_Single>(x, y, destination);