Condividi tramite


TensorPrimitives.PopCount Metodo

Definizione

Overload

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

Calcola il numero di popolamenti per elemento dei numeri nel tensore specificato.

PopCount<T>(ReadOnlySpan<T>)

Calcola il numero di popolamenti di tutti gli elementi nel tensore specificato.

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

Origine:
TensorPrimitives.PopCount.cs
Origine:
TensorPrimitives.PopCount.cs

Calcola il numero di popolamenti per elemento dei numeri nel tensore specificato.

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))

Parametri di tipo

T

Parametri

x
ReadOnlySpan<T>

Tensore, rappresentato come intervallo.

destination
Span<T>

Tensore di destinazione, rappresentato come intervallo.

Eccezioni

x e destination fare riferimento a percorsi di memoria sovrapposti e non iniziano nella stessa posizione.

Commenti

Questo metodo calcola in modo efficace destination[i] = T.PopCount(x[i]).

Si applica a

PopCount<T>(ReadOnlySpan<T>)

Origine:
TensorPrimitives.PopCount.cs

Calcola il numero di popolamenti di tutti gli elementi nel tensore specificato.

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

Parametri di tipo

T

Parametri

x
ReadOnlySpan<T>

Tensore, rappresentato come intervallo.

Restituisce

Somma del numero di bit impostati in ogni elemento in x.

Si applica a