16 references to HorizontalAggregate
System.Numerics.Tensors (16)
System\Numerics\Tensors\netcore\Common\TensorPrimitives.IIndexOfMinMaxOperator.cs (3)
612
return int.CreateTruncating(
HorizontalAggregate
<TInt, MinOperator<TInt>>(aggIndex));
687
return (int)
HorizontalAggregate
<uint, MinOperator<uint>>(aggIndex);
774
return (int)
HorizontalAggregate
<uint, MinOperator<uint>>(aggIndex);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMax.cs (1)
34
public static T Aggregate(Vector512<T> x) =>
HorizontalAggregate
<T, MaxOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMaxMagnitude.cs (1)
33
public static T Aggregate(Vector512<T> x) =>
HorizontalAggregate
<T, MaxMagnitudeOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMin.cs (1)
33
public static T Aggregate(Vector512<T> x) =>
HorizontalAggregate
<T, MinOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMinMagnitude.cs (1)
33
public static T Aggregate(Vector512<T> x) =>
HorizontalAggregate
<T, MinMagnitudeOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Max.cs (1)
161
public static T Invoke(Vector512<T> x) =>
HorizontalAggregate
<T, MaxOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.MaxMagnitude.cs (1)
116
public static T Invoke(Vector512<T> x) =>
HorizontalAggregate
<T, MaxMagnitudeOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.MaxMagnitudeNumber.cs (1)
131
public static T Invoke(Vector512<T> x) =>
HorizontalAggregate
<T, MaxMagnitudeNumberOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.MaxNumber.cs (1)
124
public static T Invoke(Vector512<T> x) =>
HorizontalAggregate
<T, MaxNumberOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Min.cs (1)
160
public static T Invoke(Vector512<T> x) =>
HorizontalAggregate
<T, MinOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.MinMagnitude.cs (1)
126
public static T Invoke(Vector512<T> x) =>
HorizontalAggregate
<T, MinMagnitudeOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.MinMagnitudeNumber.cs (1)
131
public static T Invoke(Vector512<T> x) =>
HorizontalAggregate
<T, MinMagnitudeNumberOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.MinNumber.cs (1)
124
public static T Invoke(Vector512<T> x) =>
HorizontalAggregate
<T, MinNumberOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Multiply.cs (1)
75
public static T Invoke(Vector512<T> x) =>
HorizontalAggregate
<T, MultiplyOperator<T>>(x);