14#include "arcane/materials/internal/LegacyMeshMaterialSynchronizerImpl.h"
16#include "arcane/VariableTypes.h"
17#include "arcane/IParallelMng.h"
18#include "arcane/ItemPrinter.h"
19#include "arcane/IMesh.h"
21#include "arcane/materials/CellToAllEnvCellConverter.h"
22#include "arcane/materials/MatItemEnumerator.h"
23#include "arcane/materials/MeshMaterialModifier.h"
25#include "arcane/core/ItemGenericInfoListView.h"
35LegacyMeshMaterialSynchronizerImpl::
37: TraceAccessor(material_mng->traceMng())
38, m_material_mng(material_mng)
45LegacyMeshMaterialSynchronizerImpl::
46~LegacyMeshMaterialSynchronizerImpl()
53inline void LegacyMeshMaterialSynchronizerImpl::
54_setBit(ByteArrayView bytes, Integer position)
58 bytes[offset] |= (
Byte)(1 << bit);
61inline bool LegacyMeshMaterialSynchronizerImpl::
62_hasBit(ByteConstArrayView bytes, Integer position)
66 return bytes[offset] & (1 << bit);
72void LegacyMeshMaterialSynchronizerImpl::
73_fillPresence(AllEnvCell all_env_cell, ByteArrayView presence)
77 MatCell mc = *imatcell;
78 Integer mat_index = mc.materialId();
79 _setBit(presence, mat_index);
87bool LegacyMeshMaterialSynchronizerImpl::
88synchronizeMaterialsInCells()
106 if (!
mesh->parallelMng()->isParallel())
112 Integer dim2_size = nb_mat / 8;
113 if ((nb_mat % 8) != 0)
115 mat_presence.resize(dim2_size);
116 info(4) <<
"Resize presence variable nb_mat=" << nb_mat <<
" dim2=" << dim2_size;
121 AllEnvCell all_env_cell = cell_converter[*icell];
122 _fillPresence(all_env_cell, presence);
125 bool has_changed =
false;
127 mat_presence.synchronize();
138 AllEnvCell all_env_cell = cell_converter[cell];
139 before_presence.
fill(0);
140 _fillPresence(all_env_cell, before_presence);
143 for (
Integer imat = 0; imat < nb_mat; ++imat) {
144 bool has_before = _hasBit(before_presence, imat);
145 bool has_after = _hasBit(after_presence, imat);
146 if (has_before && !has_after) {
147 to_remove[imat].
add(cell_lid);
149 else if (has_after && !has_before)
150 to_add[imat].
add(cell_lid);
155 for (
Integer i = 0; i < nb_mat; ++i) {
156 if (!to_add[i].empty()) {
157 modifier.
addCells(materials[i], to_add[i]);
160 if (!to_remove[i].empty()) {
void fill(const T &o) noexcept
Remplit le tableau avec la valeur o.
void fill(const DataType &data)
Remplissage du tableau.
void add(ConstReferenceType val)
Ajoute l'élément val à la fin du tableau.
Vue constante d'un tableau de type T.
constexpr Integer size() const noexcept
Nombre d'éléments du tableau.
constexpr Int32 localId() const
Identifiant local de l'entité dans le sous-domaine du processeur.
bool isOwn() const
true si l'entité est appartient au sous-domaine
Maille arcane avec info matériaux et milieux.
Conversion de 'Cell' en 'AllEnvCell'.
Interface du gestionnaire des matériaux et des milieux d'un maillage.
Objet permettant de modifier les matériaux ou les milieux.
void addCells(IMeshMaterial *mat, SmallSpan< const Int32 > ids)
Ajoute les mailles d'indices locaux ids au matériau mat.
void removeCells(IMeshMaterial *mat, SmallSpan< const Int32 > ids)
Supprime les mailles d'indices locaux ids au matériau mat.
TraceMessage info() const
Flot pour un message d'information.
Vecteur 1D de données avec sémantique par valeur (style STL).
Paramètres nécessaires à la construction d'une variable.
MeshVariableArrayRefT< Cell, Byte > VariableCellArrayByte
Grandeur au centre des mailles de type tableau d'octet.
Active toujours les traces dans les parties Arcane concernant les matériaux.
ArrayView< Byte > ByteArrayView
Equivalent C d'un tableau à une dimension de caractères.
Int32 Integer
Type représentant un entier.
UniqueArray< Byte > ByteUniqueArray
Tableau dynamique à une dimension de caractères.
ConstArrayView< Byte > ByteConstArrayView
Equivalent C d'un tableau à une dimension de caractères.
unsigned char Byte
Type d'un octet.
std::int32_t Int32
Type entier signé sur 32 bits.