System\Numerics\Tensors\netcore\TensorPrimitives.Add.cs (4)
29if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, AddOperator<float>>(x, y, destination))
34InvokeSpanSpanIntoSpan<T, AddOperator<T>>(x, y, destination);
54if (typeof(T) == typeof(Half) && TryAggregateInvokeHalfAsInt16<T, AddOperator<float>>(x, y, destination))
59InvokeSpanScalarIntoSpan<T, AddOperator<T>>(x, y, destination);
System\Numerics\Tensors\TensorPrimitives.Single.cs (8)
46InvokeSpanSpanIntoSpan<AddOperator_Single>(x, y, destination);
63InvokeSpanScalarIntoSpan<AddOperator_Single>(x, y, destination);
203return MathF.Sqrt(Aggregate<SubtractSquaredOperator_Single, AddOperator_Single>(x, y));
266Aggregate<MultiplyOperator_Single, AddOperator_Single>(x, y);
777return Aggregate<AddOperator_Single, MultiplyOperator_Single>(x, y);
913Aggregate<IdentityOperator_Single, AddOperator_Single>(x);
934Aggregate<AbsoluteOperator_Single, AddOperator_Single>(x);
955Aggregate<SquaredOperator_Single, AddOperator_Single>(x);