19 references to AddOperator_Single
System.Numerics.Tensors (19)
System\Numerics\Tensors\netcore\TensorPrimitives.Add.cs (2)
28InvokeSpanSpanIntoSpan<T, AddOperator<T>>(x, y, destination); 46InvokeSpanScalarIntoSpan<T, AddOperator<T>>(x, y, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.Distance.cs (1)
42return T.Sqrt(Aggregate<T, SubtractSquaredOperator<T>, AddOperator<T>>(x, y));
System\Numerics\Tensors\netcore\TensorPrimitives.Dot.cs (1)
33Aggregate<T, MultiplyOperator<T>, AddOperator<T>>(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Product.cs (1)
93return Aggregate<T, AddOperator<T>, MultiplyOperator<T>>(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Single.netcore.cs (1)
10global using AddOperator_Single = System.Numerics.Tensors.TensorPrimitives.AddOperator<float>;
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);
System\Numerics\Tensors\TensorPrimitives.Single.cs (9)
49InvokeSpanSpanIntoSpan<AddOperator_Single>(x, y, destination); 66InvokeSpanScalarIntoSpan<AddOperator_Single>(x, y, destination); 206return MathF.Sqrt(Aggregate<SubtractSquaredOperator_Single, AddOperator_Single>(x, y)); 269Aggregate<MultiplyOperator_Single, AddOperator_Single>(x, y); 780return Aggregate<AddOperator_Single, MultiplyOperator_Single>(x, y); 862float expSum = Aggregate<ExpOperator_Single, AddOperator_Single>(x); 916Aggregate<IdentityOperator_Single, AddOperator_Single>(x); 937Aggregate<AbsoluteOperator_Single, AddOperator_Single>(x); 958Aggregate<SquaredOperator_Single, AddOperator_Single>(x);