次の方法で共有


TensorPrimitives.PopCount メソッド

定義

オーバーロード

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

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

PopCount<T>(ReadOnlySpan<T>)

指定したテンソル内のすべての要素の母集団数を計算します。

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

ソース:
TensorPrimitives.PopCount.cs
ソース:
TensorPrimitives.PopCount.cs

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

public:
generic <typename T>
 where T : System::Numerics::IBinaryInteger<T> static void PopCount(ReadOnlySpan<T> x, Span<T> destination);
public static void PopCount<T> (ReadOnlySpan<T> x, Span<T> destination) where T : System.Numerics.IBinaryInteger<T>;
static member PopCount : 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 PopCount(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.PopCount(x[i])を効果的に計算します。

適用対象

PopCount<T>(ReadOnlySpan<T>)

ソース:
TensorPrimitives.PopCount.cs

指定したテンソル内のすべての要素の母集団数を計算します。

public:
generic <typename T>
 where T : System::Numerics::IBinaryInteger<T> static long PopCount(ReadOnlySpan<T> x);
public static long PopCount<T> (ReadOnlySpan<T> x) where T : System.Numerics.IBinaryInteger<T>;
static member PopCount : ReadOnlySpan<'T (requires 'T :> System.Numerics.IBinaryInteger<'T>)> -> int64 (requires 'T :> System.Numerics.IBinaryInteger<'T>)
Public Shared Function PopCount(Of T As IBinaryInteger(Of T)) (x As ReadOnlySpan(Of T)) As Long

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

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

戻り値

xの各要素に設定されたビット数の合計。

適用対象