13
13
14
14
#include " arcane/materials/AllCellToAllEnvCellConverter.h"
15
15
16
+ #include " arcane/utils/NumArray.h"
17
+
16
18
#include " arcane/core/IItemFamily.h"
17
19
#include " arcane/core/ItemEnumerator.h"
18
20
#include " arcane/core/ItemGroup.h"
19
21
#include " arcane/core/materials/internal/IMeshMaterialMngInternal.h"
20
22
23
+ #include " arcane/materials/internal/AllCellToAllEnvCellContainer.h"
24
+
21
25
#include " arcane/accelerator/Reduce.h"
22
26
#include " arcane/accelerator/RunCommandEnumerate.h"
23
27
#include " arcane/accelerator/NumArrayViews.h"
30
34
namespace Arcane ::Materials
31
35
{
32
36
33
- class AllCellToAllEnvCell ::Impl
37
+ /* ---------------------------------------------------------------------------*/
38
+ /* ---------------------------------------------------------------------------*/
39
+
40
+ class AllCellToAllEnvCellContainer ::Impl
34
41
{
35
42
public:
36
43
37
- static Int32 _computeMaxNbEnvPerCell (IMeshMaterialMng* material_mng);
38
- static void _updateValues (IMeshMaterialMng* material_mng,
39
- ComponentItemLocalId* mem_pool,
40
- Span<ComponentItemLocalId>* allcell_allenvcell,
41
- Int32 max_nb_env);
42
- static void _initialize (AllCellToAllEnvCell* instance);
44
+ explicit Impl (IMeshMaterialMng* mm)
45
+ : m_material_mng(mm)
46
+ {
47
+ m_mem_pool.setDebugName (" AllCellToAllEnvCellMemPool" );
48
+ m_envcell_container.setDebugName (" AllCellToAllEnvCellCells" );
49
+ }
50
+
51
+ public:
52
+
53
+ Int32 computeMaxNbEnvPerCell ();
54
+ void initialize ();
55
+ void bruteForceUpdate ();
56
+ void reset ();
57
+ AllCellToAllEnvCell view () const { return m_all_cell_to_all_env_cell; }
58
+
59
+ public:
60
+
61
+ static void updateValues (IMeshMaterialMng* material_mng,
62
+ Span<ComponentItemLocalId> mem_pool,
63
+ Span<Span<ComponentItemLocalId>> allcell_allenvcell,
64
+ Int32 max_nb_env);
65
+
66
+ private:
67
+
68
+ IMeshMaterialMng* m_material_mng = nullptr ;
69
+ Int32 m_size = 0 ;
70
+ NumArray<Span<ComponentItemLocalId>, MDDim1> m_envcell_container;
71
+ NumArray<ComponentItemLocalId, MDDim1> m_mem_pool;
72
+ Int32 m_current_max_nb_env = 0 ;
73
+ AllCellToAllEnvCell m_all_cell_to_all_env_cell;
43
74
};
44
75
45
76
/* ---------------------------------------------------------------------------*/
46
77
/* ---------------------------------------------------------------------------*/
47
78
48
- Int32 AllCellToAllEnvCell ::Impl::
49
- _computeMaxNbEnvPerCell (IMeshMaterialMng* material_mng )
79
+ Int32 AllCellToAllEnvCellContainer ::Impl::
80
+ computeMaxNbEnvPerCell ( )
50
81
{
82
+ IMeshMaterialMng* material_mng = m_material_mng;
51
83
CellToAllEnvCellConverter allenvcell_converter (material_mng);
52
84
RunQueue& queue = material_mng->_internalApi ()->runQueue ();
53
85
Accelerator::GenericReducer<Int32> reducer (queue);
@@ -66,11 +98,11 @@ _computeMaxNbEnvPerCell(IMeshMaterialMng* material_mng)
66
98
/* ---------------------------------------------------------------------------*/
67
99
/* ---------------------------------------------------------------------------*/
68
100
69
- void AllCellToAllEnvCell ::Impl::
70
- _updateValues (IMeshMaterialMng* material_mng,
71
- ComponentItemLocalId* mem_pool,
72
- Span<ComponentItemLocalId>* allcell_allenvcell,
73
- Int32 max_nb_env)
101
+ void AllCellToAllEnvCellContainer ::Impl::
102
+ updateValues (IMeshMaterialMng* material_mng,
103
+ Span< ComponentItemLocalId> mem_pool,
104
+ Span<Span< ComponentItemLocalId>> allcell_allenvcell,
105
+ Int32 max_nb_env)
74
106
{
75
107
// mise a jour des valeurs
76
108
CellToAllEnvCellConverter all_env_cell_converter (material_mng);
@@ -90,43 +122,43 @@ _updateValues(IMeshMaterialMng* material_mng,
90
122
mem_pool[offset + i] = ComponentItemLocalId (ev._varIndex ());
91
123
++i;
92
124
}
93
- allcell_allenvcell[cid] = Span<ComponentItemLocalId>(mem_pool + offset, nb_env);
125
+ allcell_allenvcell[cid] = Span<ComponentItemLocalId>(mem_pool. ptrAt ( offset) , nb_env);
94
126
}
95
127
else {
96
- allcell_allenvcell[cid] = Span<ComponentItemLocalId>() ;
128
+ allcell_allenvcell[cid] = {} ;
97
129
}
98
130
};
99
131
}
100
132
101
133
/* ---------------------------------------------------------------------------*/
102
134
/* ---------------------------------------------------------------------------*/
103
135
104
- void AllCellToAllEnvCell ::Impl::
105
- _initialize (AllCellToAllEnvCell* instance )
136
+ void AllCellToAllEnvCellContainer ::Impl::
137
+ initialize ( )
106
138
{
107
- IMeshMaterialMng* mm = instance-> m_material_mng ;
139
+ IMeshMaterialMng* mm = m_material_mng;
108
140
RunQueue queue = mm->_internalApi ()->runQueue ();
109
- instance-> m_size = mm->mesh ()->cellFamily ()->maxLocalId () + 1 ;
141
+ m_size = mm->mesh ()->cellFamily ()->maxLocalId () + 1 ;
110
142
111
- instance-> m_allcell_allenvcell .resize (instance-> m_size );
112
- instance-> m_allcell_allenvcell_ptr = instance-> m_allcell_allenvcell .to1DSpan (). data ();
143
+ m_envcell_container .resize (m_size);
144
+ m_all_cell_to_all_env_cell. m_allcell_allenvcell_ptr = m_envcell_container .to1DSpan ();
113
145
114
- // On force la valeur initiale sur tous les elmts car dans le ENUMERATE_CELL ci-dessous
146
+ // On force la valeur initiale sur tous les éléments car dans le ENUMERATE_CELL ci-dessous
115
147
// il se peut que m_size (qui vaut maxLocalId()+1) soit different de allCells().size()
116
- instance-> m_allcell_allenvcell .fill (Span<ComponentItemLocalId>(), &queue);
148
+ m_envcell_container .fill (Span<ComponentItemLocalId>(), &queue);
117
149
118
- instance-> m_current_max_nb_env = instance-> maxNbEnvPerCell ();
150
+ m_current_max_nb_env = computeMaxNbEnvPerCell ();
119
151
// TODO: vérifier débordement
120
- Int32 pool_size = instance-> m_current_max_nb_env * instance-> m_size ;
121
- instance-> m_mem_pool .resize (pool_size);
122
- instance-> m_mem_pool .fill (ComponentItemLocalId (), &queue);
152
+ Int32 pool_size = m_current_max_nb_env * m_size;
153
+ m_mem_pool.resize (pool_size);
154
+ m_mem_pool.fill (ComponentItemLocalId (), &queue);
123
155
124
- Span<ComponentItemLocalId> mem_pool_view (instance-> m_mem_pool .to1DSpan ());
156
+ Span<ComponentItemLocalId> mem_pool_view (m_mem_pool.to1DSpan ());
125
157
CellToAllEnvCellConverter all_env_cell_converter (mm);
126
158
auto command = makeCommand (queue);
127
- auto mem_pool = viewOut (command, instance-> m_mem_pool );
128
- auto allcell_allenvcell = viewOut (command, instance-> m_allcell_allenvcell );
129
- const Int32 max_nb_env = instance-> m_current_max_nb_env ;
159
+ auto mem_pool = viewOut (command, m_mem_pool);
160
+ auto allcell_allenvcell = viewOut (command, m_envcell_container );
161
+ const Int32 max_nb_env = m_current_max_nb_env;
130
162
command << RUNCOMMAND_ENUMERATE (CellLocalId, cid, mm->mesh ()->allCells ())
131
163
{
132
164
AllEnvCell all_env_cell = all_env_cell_converter[CellLocalId (cid)];
@@ -147,28 +179,38 @@ _initialize(AllCellToAllEnvCell* instance)
147
179
/* ---------------------------------------------------------------------------*/
148
180
/* ---------------------------------------------------------------------------*/
149
181
150
- /* ---------------------------------------------------------------------------*/
151
- /* ---------------------------------------------------------------------------*/
152
-
153
- AllCellToAllEnvCell::
154
- AllCellToAllEnvCell (IMeshMaterialMng* mm)
155
- : m_material_mng(mm)
182
+ void AllCellToAllEnvCellContainer::Impl::
183
+ bruteForceUpdate ()
156
184
{
157
- m_mem_pool.setDebugName (" AllCellToAllEnvCellMemPool" );
158
- m_allcell_allenvcell.setDebugName (" AllCellToAllEnvCellCells" );
185
+ // Si les ids ont changé, on doit tout refaire
186
+ if (m_size != m_material_mng->mesh ()->allCells ().itemFamily ()->maxLocalId () + 1 ) {
187
+ initialize ();
188
+ return ;
189
+ }
190
+
191
+ Int32 current_max_nb_env (computeMaxNbEnvPerCell ());
192
+ // Si les ids n'ont pas changé, on regarde si à cet instant, le nb max d'env par maille a changé
193
+ // Si ca a changé, refaire le mem pool, sinon, juste update les valeurs
194
+ if (current_max_nb_env != m_current_max_nb_env) {
195
+ // On n'oublie pas de mettre a jour la nouvelle valeur !
196
+ m_current_max_nb_env = current_max_nb_env;
197
+ // on recrée le pool
198
+ Int32 pool_size = CheckedConvert::multiply (m_current_max_nb_env, m_size);
199
+ m_mem_pool.resize (pool_size);
200
+ }
201
+ // Mise a jour des valeurs
202
+ updateValues (m_material_mng, m_mem_pool.to1DSpan (), m_all_cell_to_all_env_cell.m_allcell_allenvcell_ptr , m_current_max_nb_env);
159
203
}
160
204
161
205
/* ---------------------------------------------------------------------------*/
162
206
/* ---------------------------------------------------------------------------*/
163
207
164
- void AllCellToAllEnvCell ::
208
+ void AllCellToAllEnvCellContainer::Impl ::
165
209
reset ()
166
210
{
167
- if (m_allcell_allenvcell_ptr) {
168
- m_allcell_allenvcell.resize (0 );
169
- m_allcell_allenvcell_ptr = nullptr ;
170
- m_mem_pool.resize (0 );
171
- }
211
+ m_envcell_container.resize (0 );
212
+ m_all_cell_to_all_env_cell.m_allcell_allenvcell_ptr = {};
213
+ m_mem_pool.resize (0 );
172
214
m_material_mng = nullptr ;
173
215
m_size = 0 ;
174
216
m_current_max_nb_env = 0 ;
@@ -177,56 +219,81 @@ reset()
177
219
/* ---------------------------------------------------------------------------*/
178
220
/* ---------------------------------------------------------------------------*/
179
221
180
- Int32 AllCellToAllEnvCell::
181
- maxNbEnvPerCell () const
222
+ /* ---------------------------------------------------------------------------*/
223
+ /* ---------------------------------------------------------------------------*/
224
+
225
+ AllCellToAllEnvCellContainer::
226
+ AllCellToAllEnvCellContainer (IMeshMaterialMng* mm)
227
+ : m_p(new Impl(mm))
228
+ {
229
+ }
230
+
231
+ /* ---------------------------------------------------------------------------*/
232
+ /* ---------------------------------------------------------------------------*/
233
+
234
+ AllCellToAllEnvCellContainer::
235
+ ~AllCellToAllEnvCellContainer ()
182
236
{
183
- return Impl::_computeMaxNbEnvPerCell (m_material_mng) ;
237
+ delete m_p ;
184
238
}
185
239
186
240
/* ---------------------------------------------------------------------------*/
187
241
/* ---------------------------------------------------------------------------*/
188
242
189
- void AllCellToAllEnvCell::
243
+ void AllCellToAllEnvCellContainer::
244
+ reset ()
245
+ {
246
+ m_p->reset ();
247
+ }
248
+
249
+ /* ---------------------------------------------------------------------------*/
250
+ /* ---------------------------------------------------------------------------*/
251
+
252
+ Int32 AllCellToAllEnvCellContainer::
253
+ computeMaxNbEnvPerCell () const
254
+ {
255
+ return m_p->computeMaxNbEnvPerCell ();
256
+ }
257
+
258
+ /* ---------------------------------------------------------------------------*/
259
+ /* ---------------------------------------------------------------------------*/
260
+
261
+ void AllCellToAllEnvCellContainer::
190
262
initialize ()
191
263
{
192
- Impl::_initialize ( this );
264
+ m_p-> initialize ( );
193
265
}
194
266
195
267
/* ---------------------------------------------------------------------------*/
196
268
/* ---------------------------------------------------------------------------*/
197
269
198
- void AllCellToAllEnvCell ::
270
+ void AllCellToAllEnvCellContainer ::
199
271
bruteForceUpdate ()
200
272
{
201
- // Si les ids ont changé, on doit tout refaire
202
- if (m_size != m_material_mng->mesh ()->allCells ().itemFamily ()->maxLocalId () + 1 ) {
203
- initialize ();
204
- return ;
205
- }
273
+ m_p->bruteForceUpdate ();
274
+ }
206
275
207
- Int32 current_max_nb_env (maxNbEnvPerCell ());
208
- // Si les ids n'ont pas changé, on regarde si à cet instant, le nb max d'env par maille a changé
209
- // Si ca a changé, refaire le mem pool, sinon, juste update les valeurs
210
- if (current_max_nb_env != m_current_max_nb_env) {
211
- // On n'oublie pas de mettre a jour la nouvelle valeur !
212
- m_current_max_nb_env = current_max_nb_env;
213
- // Si le nb max d'env pour les mailles a changé à cet instant, on doit refaire le memory pool
214
- ARCANE_CHECK_POINTER (m_allcell_allenvcell_ptr);
215
- // on recrée le pool
216
- Int32 pool_size = CheckedConvert::multiply (m_current_max_nb_env, m_size);
217
- m_mem_pool.resize (pool_size);
218
- }
219
- // Mise a jour des valeurs
220
- Impl::_updateValues (m_material_mng, m_mem_pool.to1DSpan ().data (), m_allcell_allenvcell_ptr, m_current_max_nb_env);
276
+ /* ---------------------------------------------------------------------------*/
277
+ /* ---------------------------------------------------------------------------*/
278
+
279
+ AllCellToAllEnvCell AllCellToAllEnvCellContainer::
280
+ view () const
281
+ {
282
+ return m_p->view ();
221
283
}
222
284
223
285
/* ---------------------------------------------------------------------------*/
224
286
/* ---------------------------------------------------------------------------*/
225
287
288
+ /* ---------------------------------------------------------------------------*/
289
+ /* ---------------------------------------------------------------------------*/
290
+
226
291
CellToAllEnvCellAccessor::
227
- CellToAllEnvCellAccessor (const IMeshMaterialMng* mmmng)
228
- : m_cell_allenvcell(mmmng->_internalApi ()->getAllCellToAllEnvCell())
292
+ CellToAllEnvCellAccessor (const IMeshMaterialMng* mm)
229
293
{
294
+ AllCellToAllEnvCellContainer* c = mm->_internalApi ()->getAllCellToAllEnvCellContainer ();
295
+ if (c)
296
+ m_cell_allenvcell = c->view ();
230
297
}
231
298
232
299
/* ---------------------------------------------------------------------------*/
0 commit comments