7 references to Aggregate
System.Numerics.Tensors (7)
System\Numerics\Tensors\netcore\TensorPrimitives.Max.cs (1)
371
/// This is the same as <see cref="
Aggregate
{T, TTransformOperator, TAggregationOperator}(ReadOnlySpan{T})"/>
System\Numerics\Tensors\netcore\TensorPrimitives.Product.cs (1)
29
return
Aggregate
<T, IdentityOperator<T>, MultiplyOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Single.netcore.cs (1)
80
Aggregate
<float, TSingleTransformOperator, TSingleAggregationOperator>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.SoftMax.cs (1)
39
T expSum =
Aggregate
<T, ExpOperator<T>, AddOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Sum.cs (3)
24
Aggregate
<T, IdentityOperator<T>, AddOperator<T>>(x);
47
Aggregate
<T, AbsoluteOperator<T>, AddOperator<T>>(x);
69
Aggregate
<T, SquaredOperator<T>, AddOperator<T>>(x);