12#ifndef ARCANE_CORE_GROUPINDEXTABLE_H
13#define ARCANE_CORE_GROUPINDEXTABLE_H
17#include "arcane/utils/HashTable.h"
32 friend class GroupIndexTable;
33 typedef Int32 KeyTypeValue;
34 typedef Int32 ValueType;
36 typedef KeyTraitsType::KeyTypeConstRef KeyTypeConstRef;
40 ARCCORE_HOST_DEVICE ValueType operator[](
Int32 i)
const {
return _lookup(i); }
41 ARCCORE_HOST_DEVICE
Int32 size()
const {
return m_key_buffer_span.size(); }
48 Int32 m_nb_bucket = 0;
55 return _lookupBucket(_hash(
id),
id);
57 ARCCORE_HOST_DEVICE
Int32 _hash(KeyTypeConstRef
id)
const
59 return static_cast<Int32>(KeyTraitsType::hashFunction(
id) % m_nb_bucket);
61 ARCCORE_HOST_DEVICE Integer _lookupBucket(Int32 bucket, KeyTypeConstRef
id)
const
63 for (Integer i = m_buckets_span[bucket]; i >= 0; i = m_next_buffer_span[i]) {
64 if (m_key_buffer_span[i] ==
id)
82class ARCANE_CORE_EXPORT GroupIndexTable
87 typedef Int32 KeyTypeValue;
88 typedef Int32 ValueType;
90 typedef KeyTraitsType::KeyTypeConstRef KeyTypeConstRef;
104 ValueType operator[](
Int32 i)
const {
return _lookup(i); }
106 KeyTypeValue keyLocalId(
Int32 i)
const {
return m_key_buffer[i]; }
108 Int32 size()
const {
return m_key_buffer.size(); }
112 ARCANE_ASSERT((
_initialized()), (
"GroupIndexTable not initialized"));
113 ARCANE_ASSERT((
_checkIntegrity(
false)), (
"GroupIndexTable integrity failed"));
127 ARCANE_ASSERT((
_initialized()), (
"GroupIndexTable not initialized"));
128 return m_view._hash(
id);
131 bool _hasKey(KeyTypeConstRef
id)
const;
136 ARCANE_ASSERT((
_initialized()), (
"GroupIndexTable not initialized"));
137 return m_view._lookupBucket(bucket,
id);
143 ARCANE_ASSERT((
_checkIntegrity(
false)), (
"GroupIndexTable integrity failed"));
148 bool _initialized()
const;
151 bool _checkIntegrity(
bool full =
true)
const;
__host__ __device__ Int32 _lookup(KeyTypeConstRef id) const
Recherche d'une clef dans toute la table.
bool m_disable_check_integrity
Tableau des buckets.
UniqueArray< Int32 > m_buckets
Table des index suivant associés.
Int32 _hash(KeyTypeConstRef id) const
Fonction de hachage.
bool _checkIntegrity(bool full=true) const
Test l'intégrité de la table relativement à son groupe.
UniqueArray< Int32 > m_next_buffer
Table des clés associées.
Int32 _lookupBucket(Int32 bucket, KeyTypeConstRef id) const
Recherche d'une clef dans un bucket.
Int32 _lookup(KeyTypeConstRef id) const
Recherche d'une clef dans toute la table.
bool _initialized() const
Teste l'initialisation de l'objet.
HashTableBase(Integer table_size, bool use_prime)
Crée une table de taille table_size.
Implémentation d'un groupe d'entités de maillage.
Vue d'un tableau d'éléments de type T.
Vecteur 1D de données avec sémantique par valeur (style STL).
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
ConstArrayView< Int32 > Int32ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
std::int32_t Int32
Type entier signé sur 32 bits.