14#include "arcane/utils/OStringStream.h"
16#include "arcane/core/BasicUnitTest.h"
17#include "arcane/core/ItemPrinter.h"
18#include "arcane/core/IMesh.h"
20#include "arcane/accelerator/core/IAcceleratorMng.h"
21#include "arcane/accelerator/core/RunQueue.h"
23#if defined(ARCANE_HAS_ACCELERATOR_API)
29#include "arcane/materials/IMeshMaterialMng.h"
30#include "arcane/materials/MeshMaterialInfo.h"
31#include "arcane/materials/MeshEnvironmentBuildInfo.h"
32#include "arcane/materials/MeshMaterialModifier.h"
33#include "arcane/materials/MatItemEnumerator.h"
34#include "arcane/materials/MeshMaterialVariableRef.h"
35#include "arcane/materials/MaterialVariableBuildInfo.h"
36#include "arcane/materials/MeshMaterialVariableSynchronizerList.h"
38#include "arcane/tests/ArcaneTestGlobal.h"
39#include "arcane/tests/MeshMaterialSyncUnitTest_axl.h"
49using namespace Arcane;
58class MeshMaterialSyncUnitTest
59:
public ArcaneMeshMaterialSyncUnitTestObject
67 void initializeTest()
override;
68 void executeTest()
override;
77 void _checkVariableSync1();
83#if defined(ARCANE_HAS_ACCELERATOR_API)
84 void _checkVariableSync2(
bool do_check,
Int32 iteration);
91MeshMaterialSyncUnitTest::
93: ArcaneMeshMaterialSyncUnitTestObject(sbi)
107void MeshMaterialSyncUnitTest::
111 Integer nb_mat = options()->nbMaterial();
112 info() <<
"Number of wanted materials: " << nb_mat;
115 for(
Integer i=0; i<nb_mat; ++i ){
116 String mat_name =
String(
"MAT_") + String::fromNumber(i);
125 while(mat_index<nb_mat){
126 String env_name =
"ENV_" + String::fromNumber(env_index);
127 Materials::MeshEnvironmentBuildInfo env_build(env_name);
129 std::set<String> mats_in_env;
130 for(
Integer z=0; z<=env_index; ++z ){
131 String mat1_name =
"MAT_" + String::fromNumber(mat_index);
132 mats_in_env.insert(mat1_name);
135 String mat2_name =
"MAT_" + String::fromNumber(mat_index/2);
136 mats_in_env.insert(mat2_name);
139 if (mat_index>=nb_mat)
142 for( String mat_name : mats_in_env ){
143 info() <<
"Add material " << mat_name <<
" for environment " << env_name;
144 env_build.addMaterial(mat_name);
157void MeshMaterialSyncUnitTest::
164 m_material_mng->dumpInfos(ostr());
165 info() << ostr.str();
174void MeshMaterialSyncUnitTest::
185 IMeshMaterialMng* mm = m_material_mng;
186 Integer nb_mat = options()->nbMaterial();
190 MeshMaterialModifier mmodifier(m_material_mng);
193 for(
Integer imat=0; imat<nb_mat; ++imat ){
195 Int64 min_uid = imat*10;
196 Int64 max_uid = min_uid + 10 + imat*10;
200 if (uid<max_uid && uid>min_uid)
203 info() <<
"Adding cells n=" << ids.
size() <<
" to mat " << imat <<
" (min_uid="
204 << min_uid <<
" max_uid=" << max_uid <<
")";
205 mmodifier.addCells(mm->
materials()[imat],ids);
210 m_material_mng->checkMaterialsInCells();
211 _checkVariableSync1();
217void MeshMaterialSyncUnitTest::
220 info() <<
"Begin phase2";
221 IMeshMaterialMng* mm = m_material_mng;
222 Integer nb_mat = options()->nbMaterial();
232 MeshMaterialModifier mmodifier(m_material_mng);
236 for(
Integer imat=0; imat<nb_mat; ++imat ){
239 Int64 phase1_min_uid = imat*10;
240 Int64 phase1_max_uid = phase1_min_uid + 10 + imat*10;
242 Int64 min_uid = phase1_max_uid + 5;
243 Int64 max_uid = min_uid + 20 + imat*5;
247 if (uid<phase1_max_uid && uid>phase1_min_uid)
249 else if (uid<max_uid && uid>min_uid)
252 info() <<
"Adding cells n=" << add_ids.
size() <<
" to mat " << imat <<
" (min_uid="
253 << min_uid <<
" max_uid=" << max_uid <<
")";
254 info() <<
"Removing cells n=" << remove_ids.
size() <<
" to mat " << imat <<
" (min_uid="
255 << phase1_min_uid <<
" max_uid=" << phase1_max_uid <<
")";
256 IMeshMaterial* mat = mm->
materials()[imat];
257 mmodifier.removeCells(mat,remove_ids);
258 mmodifier.addCells(mat,add_ids);
263 m_material_mng->checkMaterialsInCells();
264 _checkVariableSync1();
265 m_variable_is_own_cell.fill(0);
267 m_variable_is_own_cell[icell] = 1;
271 m_cell_unique_ids[cell] = cell.
uniqueId();
274#if defined(ARCANE_HAS_ACCELERATOR_API)
275 for(
int i=0; i<10; ++i )
276 _checkVariableSync2(
false,i);
277 _checkVariableSync2(
true,5);
284void MeshMaterialSyncUnitTest::
291 AllEnvCell all_env_cell = *iallenvcell;
294 MatCell mc = *imatcell;
300 mat_indexes.synchronize();
304 AllEnvCell all_env_cell = *iallenvcell;
307 MatCell mc = *imatcell;
308 if (mat_indexes[mc] != (mc.
materialId() + 1)){
311 error() <<
"VariableSync error mat=" << mc.
materialId()
312 <<
" mat_index=" << mat_indexes[mc]
319 ARCANE_FATAL(
"Bad variable synchronization nb_error={0}",nb_error);
325#if defined(ARCANE_HAS_ACCELERATOR_API)
326void MeshMaterialSyncUnitTest::
327_checkVariableSync2(
bool do_check,
Int32 iteration)
331 Arcane::Accelerator::RunQueue* queue = subDomain()->acceleratorMng()->defaultQueue();
336 IMeshEnvironment* env = *ienv;
339 auto out_mat_uids =
viewOut(cmd, m_material_uids);
340 auto in_is_own_cell =
ax::viewIn(cmd, m_variable_is_own_cell);
341 auto in_cell_uids =
ax::viewIn(cmd, m_cell_unique_ids);
343 auto [mvi, cid] = evi();
344 if (in_is_own_cell[cid]==1){
345 out_mat_uids[mvi] = in_cell_uids[cid];
352 if ((iteration%2)==0 && m_material_mng->synchronizeVariableVersion()==7){
353 MeshMaterialVariableSynchronizerList vlist(m_material_mng);
354 m_material_uids.synchronize(vlist);
355 vlist.beginSynchronize();
356 vlist.endSynchronize();
359 m_material_uids.synchronize();
366 AllEnvCell all_env_cell = *iallenvcell;
368 EnvCell mc = *ienvcell;
370 if (m_material_uids[mc] != global_cell.
uniqueId()){
373 error() <<
"VariableSync error mat=" << mc
374 <<
" uid_value=" << m_material_uids[mc]
380 ARCANE_FATAL(
"Bad variable synchronization nb_error={0}",nb_error);
#define ARCANE_FATAL(...)
Macro envoyant une exception FatalErrorException.
Types et macros pour gérer les énumérations des matériaux et milieux sur les accélérateurs.
#define RUNCOMMAND_MAT_ENUMERATE(ConstituentItemNameType, iter_name, env_or_mat_container,...)
Macro pour itérer sur un matériau ou un milieu.
Module de test pour la gestion des matériaux et des milieux.
Integer size() const
Nombre d'éléments du vecteur.
void clear()
Supprime les éléments du tableau.
void add(ConstReferenceType val)
Ajoute l'élément val à la fin du tableau.
constexpr Int32 localId() const
Identifiant local de l'entité dans le sous-domaine du processeur.
ItemUniqueId uniqueId() const
Identifiant unique sur tous les domaines.
Cell globalCell() const
Maille globale.
virtual EnvItemVectorView envView() const =0
Vue associée à ce milieu.
Interface du gestionnaire des matériaux et des milieux d'un maillage.
virtual MeshMaterialInfo * registerMaterialInfo(const String &name)=0
Enregistre les infos du matériau de nom name.
virtual ConstArrayView< IMeshMaterial * > materials() const =0
Liste des matériaux.
virtual void endCreate(bool is_continue=false)=0
Indique qu'on a fini de créer les milieux.
virtual bool synchronizeMaterialsInCells()=0
Synchronise les mailles des matériaux.
virtual IMeshEnvironment * createEnvironment(const MeshEnvironmentBuildInfo &infos)=0
Créé un milieu avec les infos infos.
__host__ __device__ Int32 materialId() const
Identifiant du matériau.
Structure contenant les informations pour créer un service.
Chaîne de caractères unicode.
Paramètres nécessaires à la construction d'une variable.
ItemGroupT< Cell > CellGroup
Groupe de mailles.
MeshVariableScalarRefT< Cell, Int64 > VariableCellInt64
Grandeur au centre des mailles de type entier 64 bits.
MeshVariableScalarRefT< Cell, Byte > VariableCellByte
Grandeur au centre des mailles de type octet.
Espace de nom pour l'utilisation des accélérateurs.
RunCommand makeCommand(const RunQueue &run_queue)
Créé une commande associée à la file run_queue.
auto viewOut(const ViewBuildInfo &vbi, CellMaterialVariableScalarRef< DataType > &var)
Vue en écriture pour les variables materiaux scalaire.
auto viewIn(const ViewBuildInfo &vbi, const CellMaterialVariableScalarRef< DataType > &var)
Vue en lecture pour les variables materiaux scalaire.
Active toujours les traces dans les parties Arcane concernant les matériaux.
EnvItemVectorView EnvCellVectorView
Type de la vue sur un EnvCellVector.
CellMaterialVariableScalarRef< Int64 > MaterialVariableCellInt64
Variable matériau de type Int64
CellMaterialVariableScalarRef< Int32 > MaterialVariableCellInt32
Variable matériau de type Int32
std::int64_t Int64
Type entier signé sur 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.