12 references to MaxMagnitudeOperator_Single
System.Numerics.Tensors (12)
System\Numerics\Tensors\netcore\TensorPrimitives.MaxMagnitude.cs (9)
29if (typeof(T) == typeof(Half) && TryMinMaxHalfAsInt16<T, MaxMagnitudeOperator<float>>(x, out T result)) 34return MinMaxCore<T, MaxMagnitudeOperator<T>>(x); 55if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MaxMagnitudeOperator<float>>(x, y, destination)) 60InvokeSpanSpanIntoSpan<T, MaxMagnitudeOperator<T>>(x, y, destination); 79if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, MaxMagnitudeOperator<float>>(x, y, destination)) 84InvokeSpanScalarIntoSpan<T, MaxMagnitudeOperator<T>>(x, y, destination); 159public static T Invoke(Vector128<T> x) => HorizontalAggregate<T, MaxMagnitudeOperator<T>>(x); 160public static T Invoke(Vector256<T> x) => HorizontalAggregate<T, MaxMagnitudeOperator<T>>(x); 161public static T Invoke(Vector512<T> x) => HorizontalAggregate<T, MaxMagnitudeOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Single.netcore.cs (1)
24global using MaxMagnitudeOperator_Single = System.Numerics.Tensors.TensorPrimitives.MaxMagnitudeOperator<float>;
System\Numerics\Tensors\TensorPrimitives.Single.cs (2)
461MinMaxCore<MaxMagnitudeOperator_Single>(x); 479InvokeSpanSpanIntoSpan<MaxMagnitudeOperator_Single>(x, y, destination);