TensorPrimitives.Exp2<T>(ReadOnlySpan<T>, Span<T>) メソッド

定義

2 を指定したテンソル内の累乗数に引き上げた要素ごとの結果を計算します。

public:
generic <typename T>
 where T : System::Numerics::IExponentialFunctions<T> static void Exp2(ReadOnlySpan<T> x, Span<T> destination);
public static void Exp2<T> (ReadOnlySpan<T> x, Span<T> destination) where T : System.Numerics.IExponentialFunctions<T>;
static member Exp2 : ReadOnlySpan<'T (requires 'T :> System.Numerics.IExponentialFunctions<'T>)> * Span<'T (requires 'T :> System.Numerics.IExponentialFunctions<'T>)> -> unit (requires 'T :> System.Numerics.IExponentialFunctions<'T>)
Public Shared Sub Exp2(Of T As IExponentialFunctions(Of T)) (x As ReadOnlySpan(Of T), destination As Span(Of T))

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

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

destination
Span<T>

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

例外

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

注釈

このメソッドは、destination[i] = T.Exp2(x[i])を効果的に計算します。

このメソッドは、基になる C ランタイムを呼び出すか、現在のアーキテクチャに固有の命令を使用できます。 正確な結果は、オペレーティング システムやアーキテクチャによって異なる場合があります。

適用対象