Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
AcceleratorMeshMaterialSynchronizerImpl.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* MeshMaterialSynchronizer.h (C) 2000-2024 */
9/* */
10/* Synchronisation de la liste des matériaux/milieux des entités. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_MATERIALS_INTERNAL_MESHMATERIALSYNCHRONIZERIMPLACC_H
13#define ARCANE_MATERIALS_INTERNAL_MESHMATERIALSYNCHRONIZERIMPLACC_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/TraceAccessor.h"
18#include "arcane/utils/ArrayView.h"
19
20#include "arcane/VariableTypedef.h"
21#include <arcane/core/MeshVariableArrayRef.h>
22
24#include "arcane/materials/MatItem.h"
25
26#include "arcane/accelerator/Accelerator.h"
27#include "arcane/materials/internal/IndexSelecter.h"
28
29#include "arcane/materials/internal/IMeshMaterialSynchronizerImpl.h"
30
31/*---------------------------------------------------------------------------*/
32/*---------------------------------------------------------------------------*/
33
34namespace Arcane::Materials
35{
37
38/*---------------------------------------------------------------------------*/
39/*---------------------------------------------------------------------------*/
52class AcceleratorMeshMaterialSynchronizerImpl
53: public TraceAccessor
54, public IMeshMaterialSynchronizerImpl
55{
56 public:
57
58 explicit AcceleratorMeshMaterialSynchronizerImpl(IMeshMaterialMng* material_mng);
59
60 public:
61
71
72 private:
73
74 IMeshMaterialMng* m_material_mng;
75
76 public:
77
78 ARCCORE_HOST_DEVICE static void _setBit(Arcane::DataViewGetterSetter<unsigned char> bytes, Integer position)
79 {
80 Integer bit = position % 8;
81 unsigned char temp = bytes;
82 temp |= (Byte)(1 << bit);
83 bytes = temp;
84 }
85 ARCCORE_HOST_DEVICE static bool _hasBit(Arcane::DataViewGetterSetter<unsigned char> bytes, Integer position)
86 {
87 Integer bit = position % 8;
88 unsigned char temp = bytes;
89 return temp & (1 << bit);
90 }
91
92 private:
93
95 VariableCellArrayByte m_mat_presence;
96};
97
98/*---------------------------------------------------------------------------*/
99/*---------------------------------------------------------------------------*/
100
101} // End namespace Arcane::Materials
102
103/*---------------------------------------------------------------------------*/
104/*---------------------------------------------------------------------------*/
105
106#endif
Construction d'un sous-ensemble d'indexes à partir d'un critère.
Classe pour accéder à un élément d'une vue en lecture/écriture.
Definition DataView.h:245
bool synchronizeMaterialsInCells()
Synchronisation de la liste des matériaux/milieux des entités.
Interface du gestionnaire des matériaux et des milieux d'un maillage.
TraceAccessor(ITraceMng *m)
Construit un accesseur via le gestionnaire de trace m.
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.
Int32 Integer
Type représentant un entier.
unsigned char Byte
Type d'un octet.
Definition BaseTypes.h:43