TensorPrimitives.PopCount メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
PopCount<T>(ReadOnlySpan<T>, Span<T>) |
指定したテンソル内の数値の要素ごとの母集団数を計算します。 |
PopCount<T>(ReadOnlySpan<T>) |
指定したテンソル内のすべての要素の母集団数を計算します。 |
PopCount<T>(ReadOnlySpan<T>, Span<T>)
指定したテンソル内の数値の要素ごとの母集団数を計算します。
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
パラメーター
スパンとして表されるテンソル。
- destination
- Span<T>
スパンとして表される宛先テンソル。
例外
x
と destination
は重複するメモリの場所を参照し、同じ場所から開始しないでください。
注釈
このメソッドは、
を効果的に計算します。destination
[i] = T.PopCount(x
[i])
適用対象
PopCount<T>(ReadOnlySpan<T>)
指定したテンソル内のすべての要素の母集団数を計算します。
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
の各要素に設定されたビット数の合計。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET