2 references to Add
Microsoft.Data.Analysis (2)
Computations\Arithmetic.net8.cs (2)
98
public static void Add(ReadOnlySpan<T> x, T y, Span<T> destination) => TensorPrimitives.
Add
(x, y, destination);
99
public static void Add(T x, ReadOnlySpan<T> y, Span<T> destination) => TensorPrimitives.
Add
(y, x, destination);