次の方法で共有


TensorPrimitives.Add メソッド

定義

オーバーロード

Add(ReadOnlySpan<Single>, ReadOnlySpan<Single>, Span<Single>)

指定したテンソル内の単精度浮動小数点数の要素ごとの加算を計算します。

Add(ReadOnlySpan<Single>, Single, Span<Single>)

指定したテンソル内の単精度浮動小数点数の要素ごとの加算を計算します。

Add<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>)

指定したテンソル内の数値の要素ごとの加算を計算します。

Add<T>(ReadOnlySpan<T>, T, Span<T>)

指定したテンソル内の数値の要素ごとの加算を計算します。

Add(ReadOnlySpan<Single>, ReadOnlySpan<Single>, Span<Single>)

ソース:
TensorPrimitives.cs
ソース:
TensorPrimitives.Single.cs
ソース:
TensorPrimitives.Single.cs

指定したテンソル内の単精度浮動小数点数の要素ごとの加算を計算します。

public:
 static void Add(ReadOnlySpan<float> x, ReadOnlySpan<float> y, Span<float> destination);
public static void Add (ReadOnlySpan<float> x, ReadOnlySpan<float> y, Span<float> destination);
static member Add : ReadOnlySpan<single> * ReadOnlySpan<single> * Span<single> -> unit
Public Shared Sub Add (x As ReadOnlySpan(Of Single), y As ReadOnlySpan(Of Single), destination As Span(Of Single))

パラメーター

x
ReadOnlySpan<Single>

スパンとして表される最初のテンソル。

y
ReadOnlySpan<Single>

スパンとして表される 2 番目のテンソル。

destination
Span<Single>

スパンとして表される宛先テンソル。

例外

ydestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = x[i] + y[i]を効果的に計算します。

要素ごとの入力値のいずれかが NaNと等しい場合、結果の要素ごとの値も NaN になります。

適用対象

Add(ReadOnlySpan<Single>, Single, Span<Single>)

ソース:
TensorPrimitives.cs
ソース:
TensorPrimitives.Single.cs
ソース:
TensorPrimitives.Single.cs

指定したテンソル内の単精度浮動小数点数の要素ごとの加算を計算します。

public:
 static void Add(ReadOnlySpan<float> x, float y, Span<float> destination);
public static void Add (ReadOnlySpan<float> x, float y, Span<float> destination);
static member Add : ReadOnlySpan<single> * single * Span<single> -> unit
Public Shared Sub Add (x As ReadOnlySpan(Of Single), y As Single, destination As Span(Of Single))

パラメーター

x
ReadOnlySpan<Single>

スパンとして表される最初のテンソル。

y
Single

スカラーとして表される 2 番目のテンソル。

destination
Span<Single>

スパンとして表される宛先テンソル。

例外

xdestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = x[i] + yを効果的に計算します。

要素ごとの入力値のいずれかが NaNと等しい場合、結果の要素ごとの値も NaN になります。

適用対象

Add<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>)

ソース:
TensorPrimitives.Add.cs
ソース:
TensorPrimitives.Add.cs

指定したテンソル内の数値の要素ごとの加算を計算します。

public:
generic <typename T>
 where T : System::Numerics::IAdditionOperators<T, T, T>, System::Numerics::IAdditiveIdentity<T, T> static void Add(ReadOnlySpan<T> x, ReadOnlySpan<T> y, Span<T> destination);
public static void Add<T> (ReadOnlySpan<T> x, ReadOnlySpan<T> y, Span<T> destination) where T : System.Numerics.IAdditionOperators<T,T,T>, System.Numerics.IAdditiveIdentity<T,T>;
static member Add : ReadOnlySpan<'T (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T>)> * ReadOnlySpan<'T (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T>)> * Span<'T (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T>)> -> unit (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T>)
Public Shared Sub Add(Of T As {IAdditionOperators(Of T, T, T), IAdditiveIdentity(Of T, T)}) (x As ReadOnlySpan(Of T), y As ReadOnlySpan(Of T), destination As Span(Of T))

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

スパンとして表される最初のテンソル。

y
ReadOnlySpan<T>

スパンとして表される 2 番目のテンソル。

destination
Span<T>

スパンとして表される宛先テンソル。

例外

ydestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = x[i] + y[i]を効果的に計算します。

要素ごとの入力値のいずれかが NaNと等しい場合、結果の要素ごとの値も NaN になります。

適用対象

Add<T>(ReadOnlySpan<T>, T, Span<T>)

ソース:
TensorPrimitives.Add.cs
ソース:
TensorPrimitives.Add.cs

指定したテンソル内の数値の要素ごとの加算を計算します。

public:
generic <typename T>
 where T : System::Numerics::IAdditionOperators<T, T, T>, System::Numerics::IAdditiveIdentity<T, T> static void Add(ReadOnlySpan<T> x, T y, Span<T> destination);
public static void Add<T> (ReadOnlySpan<T> x, T y, Span<T> destination) where T : System.Numerics.IAdditionOperators<T,T,T>, System.Numerics.IAdditiveIdentity<T,T>;
static member Add : ReadOnlySpan<'T (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T>)> * 'T * Span<'T (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T>)> -> unit (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T>)
Public Shared Sub Add(Of T As {IAdditionOperators(Of T, T, T), IAdditiveIdentity(Of T, T)}) (x As ReadOnlySpan(Of T), y As T, destination As Span(Of T))

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

スパンとして表される最初のテンソル。

y
T

スカラーとして表される 2 番目のテンソル。

destination
Span<T>

スパンとして表される宛先テンソル。

例外

xdestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = x[i] + yを効果的に計算します。

要素ごとの入力値のいずれかが NaNと等しい場合、結果の要素ごとの値も NaN になります。

適用対象