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)
29return Aggregate<T, IdentityOperator<T>, MultiplyOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Single.netcore.cs (1)
80Aggregate<float, TSingleTransformOperator, TSingleAggregationOperator>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.SoftMax.cs (1)
39T expSum = Aggregate<T, ExpOperator<T>, AddOperator<T>>(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Sum.cs (3)
24Aggregate<T, IdentityOperator<T>, AddOperator<T>>(x); 47Aggregate<T, AbsoluteOperator<T>, AddOperator<T>>(x); 69Aggregate<T, SquaredOperator<T>, AddOperator<T>>(x);