12#ifndef ARCANE_MESH_PARALLELAMRCONSISTENCY_H
13#define ARCANE_MESH_PARALLELAMRCONSISTENCY_H
17#include "arcane/utils/String.h"
18#include "arcane/utils/HashTableMap.h"
19#include "arcane/utils/Real3.h"
21#include "arcane/IMesh.h"
22#include "arcane/ItemGroup.h"
23#include "arcane/Item.h"
24#include "arcane/VariableTypes.h"
26#include "arcane/mesh/DynamicMeshKindInfos.h"
28#include "arcane/utils/PerfCounterMng.h"
30#include <unordered_set>
31#include <unordered_map>
48 return m_nodes_unique_id.size();
52 m_nodes_unique_id.add(node_unique_id);
56 m_nodes_unique_id[i] = node_unique_id;
87 void setCoord(
Real3 coord)
91 Real3 getCoord()
const
125 m_unique_id(NULL_ITEM_ID), m_owner(A_NULL_RANK), m_nb_node(0), m_data_index(-1), m_mng(0)
135 m_unique_id(unique_id), m_cell_unique_id(cell_unique_id), m_owner(owner), m_nb_node(nb_node),
136 m_data_index(data_index), m_mng(mng)
146 return m_cell_unique_id;
154 return m_mng->m_nodes_unique_id[m_data_index + i];
158 m_mng->m_nodes_unique_id[m_data_index + i] = uid;
164 void setCenter(
Real3 center)
199 : m_unique_id(NULL_ITEM_ID), m_owner(A_NULL_RANK) { }
201 : m_unique_id(unique_id), m_owner(aowner) { }
211 void setCenter(
Real3 center)
241 typedef std::unordered_set<Int64> ItemUidSet;
242 typedef std::unordered_map<Int64,Item> ItemMap;
243 typedef std::pair<Int64,Item> ItemMapValue;
246#ifdef ACTIVATE_PERF_COUNTER
259 static const std::string m_names[NbCounters] ;
268 bool isUpdated()
const {
269 return m_is_updated ;
272 if(!m_is_updated) init() ;
277 void changeOwnersOld();
279#ifdef ACTIVATE_PERF_COUNTER
280 PerfCounterMng<PerfCounter>& getPerfCounter() {
281 return m_perf_counter ;
289 NodeInfoList m_nodes_info;
290 NodeInfoList m_active_nodes;
291 FaceInfoMap m_active_faces;
292 FaceInfoMap2 m_active_faces2;
293 String m_active_face_name;
300#ifdef ACTIVATE_PERF_COUNTER
301 PerfCounterMng<PerfCounter> m_perf_counter ;
309 FaceInfoMap& face_map,
312 ItemUidSet& updated_face_uids,
313 ItemUidSet& updated_node_uids);
319 NodeInfoList& node_map,
320 FaceInfoMap2& face_map,
324 void _gatherAllNodesInfo();
326 void _printFaces(std::ostream& o, FaceInfoMap& face_map);
328 void _addFaceToList(
Face face, FaceInfoMap& face_map);
330 void _addFaceToList2(
Face face, FaceInfoMap2& face_map);
331 void _addNodeToList(
Node node, NodeInfoList& node_map);
332 bool _hasSharedNodes(
Face face);
Tableau d'items de types quelconques.
Vue constante d'un tableau de type T.
Enumerateur sur un HashTableMap.
Table de hachage pour tableaux associatifs.
Identifiant unique d'une entité.
Classe gérant un vecteur de réel de dimension 3.
Vecteur 1D de données avec sémantique par référence.
Chaîne de caractères unicode.
TraceAccessor(ITraceMng *m)
Construit un accesseur via le gestionnaire de trace m.
Vecteur 1D de données avec sémantique par valeur (style STL).
Infos sur une Face active.
structure de recherche d'un noeud à partir de ses coords La clef de hashage est la position geometriq...
Integer m_owner
propriétaire du noeud
ItemUniqueId m_unique_id
Numéro de ce noeud.
Real3 m_coord
Coordonnées de ce noeud.
SharedArray< ItemUniqueId > m_connected_active_faces
Liste des uniqueId() des faces actives auquel ce noeud peut être connecté
void makeNewItemsConsistent2(MapCoordToUid &node_finder, MapCoordToUid &face_finder)
Détermine les faces à envoyer aux voisins.
void makeNewItemsConsistent(NodeMapCoordToUid &node_finder, FaceMapCoordToUid &face_finder)
Détermine les faces à envoyer aux voisins.
void _gatherFaces(ConstArrayView< ItemUniqueId > faces_to_send, ConstArrayView< ItemUniqueId > nodes_to_send, FaceInfoMap &face_map, MapCoordToUid &node_finder, MapCoordToUid &face_finder, ItemUidSet &updated_face_uids, ItemUidSet &updated_node_uids)
void _gatherItems(ConstArrayView< ItemUniqueId > nodes_to_send, ConstArrayView< ItemUniqueId > faces_to_send, NodeInfoList &node_map, FaceInfoMap2 &face_map, MapCoordToUid &node_finder, MapCoordToUid &face_finder)
ParallelAMRConsistency(IMesh *mesh)
AMR.
ItemGroupT< Face > FaceGroup
Groupe de faces.
MeshVariableScalarRefT< Node, Real3 > VariableNodeReal3
Grandeur au noeud de type coordonnées.
UniqueArray< Int64 > Int64UniqueArray
Tableau dynamique à une dimension d'entiers 64 bits.
Int32 Integer
Type représentant un entier.
UniqueArray< Int32 > Int32UniqueArray
Tableau dynamique à une dimension d'entiers 32 bits.
std::int32_t Int32
Type entier signé sur 32 bits.