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