TensorPrimitives.ShiftLeft<T> メソッド

定義

指定したテンソル内の数値の要素単位の左シフトを、指定したシフト量で計算します。

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

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

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

shiftAmount
Int32

スカラーとして表されるシフトするビット数。

destination
Span<T>

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

例外

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

注釈

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

適用対象