TensorPrimitives.PopCount Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
PopCount<T>(ReadOnlySpan<T>, Span<T>) |
Calcule le nombre de nombres dans le tensoriel spécifié. |
PopCount<T>(ReadOnlySpan<T>) |
Calcule le nombre de population de tous les éléments dans le tensoriel spécifié. |
PopCount<T>(ReadOnlySpan<T>, Span<T>)
- Source:
- TensorPrimitives.PopCount.cs
- Source:
- TensorPrimitives.PopCount.cs
Calcule le nombre de nombres dans le tensoriel spécifié.
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))
Paramètres de type
- T
Paramètres
Le capteur, représenté sous la forme d’une étendue.
- destination
- Span<T>
Le tensoriel de destination, représenté sous la forme d’une étendue.
Exceptions
x
et destination
référence les emplacements de mémoire qui se chevauchent et ne commencent pas au même emplacement.
Remarques
Cette méthode calcule efficacement
.destination
[i] = T.PopCount(x
[i])
S’applique à
PopCount<T>(ReadOnlySpan<T>)
- Source:
- TensorPrimitives.PopCount.cs
Calcule le nombre de population de tous les éléments dans le tensoriel spécifié.
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
Paramètres de type
- T
Paramètres
Le capteur, représenté sous la forme d’une étendue.
Retours
Somme du nombre de bits définis dans chaque élément de x
.