TensorPrimitives.LeadingZeroCount<T> メソッド

定義

指定したテンソル内の数値の要素ごとの先行ゼロカウントを計算します。

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

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

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

destination
Span<T>

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

例外

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

注釈

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

適用対象