Skip to content

Commit ebb8608

Browse files
Merge pull request #1182 from arcaneframework/dev/gg-add-localid-for-componentiteminternal
Add class 'ComponentItemInternaLocalId' to store an index instead of a pointer
2 parents 9916478 + e077ae2 commit ebb8608

File tree

6 files changed

+210
-45
lines changed

6 files changed

+210
-45
lines changed

arcane/src/arcane/core/materials/ComponentItemInternal.h

+53-12
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
22
//-----------------------------------------------------------------------------
3-
// Copyright 2000-2023 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
3+
// Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
44
// See the top-level COPYRIGHT file for details.
55
// SPDX-License-Identifier: Apache-2.0
66
//-----------------------------------------------------------------------------
77
/*---------------------------------------------------------------------------*/
8-
/* ComponentItemInternal.h (C) 2000-2023 */
8+
/* ComponentItemInternal.h (C) 2000-2024 */
99
/* */
1010
/* Partie interne d'une maille multi-matériau. */
1111
/*---------------------------------------------------------------------------*/
@@ -24,13 +24,35 @@
2424
namespace Arcane::Materials
2525
{
2626

27+
28+
/*---------------------------------------------------------------------------*/
29+
/*---------------------------------------------------------------------------*/
30+
/*!
31+
* \internal
32+
*/
33+
class ARCANE_CORE_EXPORT ComponentItemInternalLocalId
34+
{
35+
public:
36+
37+
ComponentItemInternalLocalId() = default;
38+
explicit ARCCORE_HOST_DEVICE ComponentItemInternalLocalId(Int32 id)
39+
: m_id(id)
40+
{}
41+
ARCCORE_HOST_DEVICE Int32 localId() const { return m_id; }
42+
43+
private:
44+
45+
Int32 m_id = -1;
46+
};
47+
2748
/*---------------------------------------------------------------------------*/
2849
/*---------------------------------------------------------------------------*/
2950

3051
class ARCANE_CORE_EXPORT ComponentItemSharedInfo
3152
{
3253
friend class ComponentItemInternal;
3354
friend class ComponentItemInternalData;
55+
friend class CellComponentCellEnumerator;
3456

3557
private:
3658

@@ -41,9 +63,14 @@ class ARCANE_CORE_EXPORT ComponentItemSharedInfo
4163

4264
private:
4365

66+
// NOTE : Cette classe est partagée avec le wrapper C#
67+
// Toute modification de la structure interne doit être reportée
68+
// dans la structure C# correspondante
4469
ItemSharedInfo* m_item_shared_info = ItemSharedInfo::nullInstance();
4570
Int16 m_level = (-1);
4671
ConstArrayView<IMeshComponent*> m_components;
72+
ComponentItemSharedInfo* m_parent_component_item_shared_info = null_shared_info_pointer;
73+
ArrayView<ComponentItemInternal> m_component_item_internal_view;
4774
};
4875

4976
/*---------------------------------------------------------------------------*/
@@ -183,8 +210,9 @@ class ARCANE_CORE_EXPORT ComponentItemInternal
183210
Int16 m_component_id = -1;
184211
Int16 m_nb_sub_component_item = 0;
185212
Int32 m_global_item_local_id = NULL_ITEM_LOCAL_ID;
186-
ComponentItemInternal* m_super_component_item = nullptr;
187-
ComponentItemInternal* m_first_sub_component_item = nullptr;
213+
ComponentItemInternalLocalId m_component_item_internal_local_id;
214+
ComponentItemInternalLocalId m_super_component_item_local_id;
215+
ComponentItemInternalLocalId m_first_sub_component_item_local_id;
188216
ComponentItemSharedInfo* m_shared_info = nullptr;
189217

190218
private:
@@ -213,12 +241,13 @@ class ARCANE_CORE_EXPORT ComponentItemInternal
213241
//! Composant supérieur (0 si aucun)
214242
matimpl::ConstituentItemBase _superItemBase() const
215243
{
216-
return m_super_component_item;
244+
return &m_shared_info->m_component_item_internal_view[m_super_component_item_local_id.localId()];
217245
}
218246

219247
void _setSuperAndGlobalItem(ComponentItemInternal* cii, ItemLocalId ii)
220248
{
221-
m_super_component_item = cii;
249+
if (cii)
250+
m_super_component_item_local_id = cii->_internalLocalId();
222251
m_global_item_local_id = ii.localId();
223252
}
224253

@@ -228,9 +257,14 @@ class ARCANE_CORE_EXPORT ComponentItemInternal
228257
}
229258

230259
//! Première entité sous-composant.
231-
ARCCORE_HOST_DEVICE ComponentItemInternal* _firstSubItem() const
260+
ARCCORE_HOST_DEVICE ComponentItemInternalLocalId _firstSubItemLocalId() const
232261
{
233-
return m_first_sub_component_item;
262+
return m_first_sub_component_item_local_id;
263+
}
264+
265+
ARCCORE_HOST_DEVICE ComponentItemInternal* _subItem(Int32 i) const
266+
{
267+
return &m_shared_info->m_component_item_internal_view[m_first_sub_component_item_local_id.localId() + i];
234268
}
235269

236270
//! Positionne le nombre de sous-composants.
@@ -245,7 +279,8 @@ class ARCANE_CORE_EXPORT ComponentItemInternal
245279
//! Positionne le premier sous-composant.
246280
void _setFirstSubItem(ComponentItemInternal* first_sub_item)
247281
{
248-
m_first_sub_component_item = first_sub_item;
282+
if (first_sub_item)
283+
m_first_sub_component_item_local_id = first_sub_item->_internalLocalId();
249284
}
250285

251286
void _setComponent(Int32 component_id)
@@ -256,13 +291,19 @@ class ARCANE_CORE_EXPORT ComponentItemInternal
256291
m_component_id = static_cast<Int16>(component_id);
257292
}
258293

259-
void _reset(ComponentItemSharedInfo* shared_info)
294+
ComponentItemInternalLocalId _internalLocalId() const
295+
{
296+
return m_component_item_internal_local_id;
297+
}
298+
299+
void _reset(ComponentItemInternalLocalId id, ComponentItemSharedInfo* shared_info)
260300
{
261301
m_var_index.reset();
262302
m_component_id = -1;
263-
m_super_component_item = nullptr;
303+
m_super_component_item_local_id = {};
304+
m_component_item_internal_local_id = id;
264305
m_nb_sub_component_item = 0;
265-
m_first_sub_component_item = nullptr;
306+
m_first_sub_component_item_local_id = {};
266307
m_global_item_local_id = NULL_ITEM_LOCAL_ID;
267308
m_shared_info = shared_info;
268309
}

arcane/src/arcane/core/materials/MatItem.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ class EnvCell
155155
//! i-ème maille matériau de cette maille
156156
inline MatCell cell(Integer i)
157157
{
158-
return matimpl::ConstituentItemBase(m_internal->_firstSubItem() + i);
158+
return matimpl::ConstituentItemBase(m_internal->_subItem(i));
159159
}
160160

161161
//! Milieu associé
@@ -225,7 +225,7 @@ class AllEnvCell
225225
//! i-ème maille milieu
226226
EnvCell cell(Int32 i) const
227227
{
228-
return EnvCell(matimpl::ConstituentItemBase(m_internal->_firstSubItem() + i));
228+
return EnvCell(matimpl::ConstituentItemBase(m_internal->_subItem(i)));
229229
}
230230
};
231231

arcane/src/arcane/core/materials/MatItemEnumerator.h

+21-11
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
22
//-----------------------------------------------------------------------------
3-
// Copyright 2000-2023 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
3+
// Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
44
// See the top-level COPYRIGHT file for details.
55
// SPDX-License-Identifier: Apache-2.0
66
//-----------------------------------------------------------------------------
77
/*---------------------------------------------------------------------------*/
8-
/* MatItemEnumerator.h (C) 2000-2023 */
8+
/* MatItemEnumerator.h (C) 2000-2024 */
99
/* */
1010
/* Enumérateurs sur les mailles materiaux. */
1111
/*---------------------------------------------------------------------------*/
@@ -341,7 +341,7 @@ class ARCANE_CORE_EXPORT EnvPartCellEnumerator
341341
/*---------------------------------------------------------------------------*/
342342
/*---------------------------------------------------------------------------*/
343343
/*!
344-
* \brief Enumérateur sur les matériaux d'une maille.
344+
* \brief Enumérateur sur les constituants d'une maille.
345345
*/
346346
class ARCANE_CORE_EXPORT CellComponentCellEnumerator
347347
{
@@ -350,7 +350,9 @@ class ARCANE_CORE_EXPORT CellComponentCellEnumerator
350350
public:
351351

352352
ARCCORE_HOST_DEVICE explicit CellComponentCellEnumerator(ComponentCell super_item)
353-
: m_index(0), m_size(super_item._internal()->nbSubItem()), m_items_begin(super_item._internal()->_firstSubItem())
353+
: m_size(super_item._internal()->nbSubItem())
354+
, m_items_begin(super_item._internal()->_firstSubItemLocalId().localId())
355+
, m_item_internal_list(super_item._internal()->m_shared_info->m_component_item_internal_view)
354356
{
355357
}
356358

@@ -362,20 +364,28 @@ class ARCANE_CORE_EXPORT CellComponentCellEnumerator
362364
ARCCORE_HOST_DEVICE ComponentCell operator*() const
363365
{
364366
ARCANE_CHECK_AT(m_index,m_size);
365-
return ComponentCell(matimpl::ConstituentItemBase(m_items_begin+m_index));
367+
return ComponentCell(_currentItemBase());
366368
}
367-
ARCCORE_HOST_DEVICE MatVarIndex _varIndex() const { return m_items_begin[m_index].variableIndex(); }
369+
ARCCORE_HOST_DEVICE MatVarIndex _varIndex() const { return m_item_internal_list[m_items_begin+m_index].variableIndex(); }
368370
ARCCORE_HOST_DEVICE Integer index() const { return m_index; }
369371
ARCCORE_HOST_DEVICE operator ComponentItemLocalId() const
370372
{
371-
return ComponentItemLocalId(m_items_begin[m_index].variableIndex());
373+
return ComponentItemLocalId(_varIndex());
372374
}
373375

374376
protected:
375377

376-
Integer m_index;
377-
Integer m_size;
378-
ComponentItemInternal* m_items_begin;
378+
Int32 m_index = 0;
379+
Int32 m_size = 0;
380+
Int32 m_items_begin = -1;
381+
ArrayView<ComponentItemInternal> m_item_internal_list;
382+
383+
protected:
384+
385+
ARCCORE_HOST_DEVICE matimpl::ConstituentItemBase _currentItemBase() const
386+
{
387+
return matimpl::ConstituentItemBase(const_cast<ComponentItemInternal*>(m_item_internal_list.ptrAt(m_items_begin+m_index)));
388+
}
379389
};
380390

381391
/*---------------------------------------------------------------------------*/
@@ -396,7 +406,7 @@ template <typename ComponentCellType> class CellComponentCellEnumeratorT
396406
ARCCORE_HOST_DEVICE ComponentCellType operator*() const
397407
{
398408
ARCANE_CHECK_AT(m_index,m_size);
399-
return ComponentCellType(matimpl::ConstituentItemBase(m_items_begin+m_index));
409+
return ComponentCellType(_currentItemBase());
400410
}
401411
};
402412

arcane/src/arcane/materials/ComponentItemInternalData.cc

+29-17
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ ComponentItemInternalData(MeshMaterialMng* mmg)
3535
, m_material_mng(mmg)
3636
, m_component_item_internal_storage(MemoryUtils::getAllocatorForMostlyReadOnlyData())
3737
, m_shared_infos(MemoryUtils::getAllocatorForMostlyReadOnlyData())
38+
, m_mat_items_internal_range(MemoryUtils::getAllocatorForMostlyReadOnlyData())
3839
{
3940
// Il y a une instance pour les MatCell, les EnvCell et les AllEnvCell
4041
// Il ne faut ensuite plus modifier ce tableau car on conserve des pointeurs
@@ -49,9 +50,8 @@ void ComponentItemInternalData::
4950
endCreate()
5051
{
5152
const Int32 nb_env = m_material_mng->environments().size();
52-
m_mat_items_internal.clear();
5353
m_mat_items_internal.resize(nb_env);
54-
54+
m_mat_items_internal_range.resize(nb_env);
5555
_initSharedInfos();
5656
}
5757

@@ -63,20 +63,21 @@ endCreate()
6363
void ComponentItemInternalData::
6464
_resetItemsInternal()
6565
{
66+
ComponentItemInternalLocalId internal_local_id;
67+
ArrayView<ComponentItemInternal> storage = m_component_item_internal_storage;
68+
6669
ComponentItemSharedInfo* all_env_shared_info = allEnvSharedInfo();
67-
for (ComponentItemInternal& x : m_all_env_items_internal)
68-
x._reset(all_env_shared_info);
70+
for (ComponentItemInternalLocalId id : m_all_env_items_internal_range)
71+
storage[id.localId()]._reset(id, all_env_shared_info);
6972

7073
ComponentItemSharedInfo* env_shared_info = envSharedInfo();
71-
for (ComponentItemInternal& x : m_env_items_internal)
72-
x._reset(env_shared_info);
73-
74-
for (const MeshEnvironment* env : m_material_mng->trueEnvironments()) {
75-
ArrayView<ComponentItemInternal> mat_items_internal = matItemsInternal(env->id());
76-
ComponentItemSharedInfo* mat_shared_info = matSharedInfo();
77-
for (ComponentItemInternal& x : mat_items_internal) {
78-
x._reset(mat_shared_info);
79-
}
74+
for (ComponentItemInternalLocalId id : m_env_items_internal_range)
75+
storage[id.localId()]._reset(id, env_shared_info);
76+
77+
ComponentItemSharedInfo* mat_shared_info = matSharedInfo();
78+
for (ComponentItemInternalRange mat_range : m_mat_items_internal_range) {
79+
for (ComponentItemInternalLocalId id : mat_range)
80+
storage[id.localId()]._reset(id, mat_shared_info);
8081
}
8182
}
8283

@@ -93,6 +94,7 @@ resizeComponentItemInternals(Int32 max_local_id, Int32 total_env_cell)
9394
// dès qu'un des nombre d'élément change.
9495
Int32 total_nb_internal = 0;
9596
total_nb_internal += max_local_id; // Pour les AllEnvCell
97+
9698
total_nb_internal += total_env_cell; // Pour les EnvCell
9799
for (const MeshEnvironment* env : m_material_mng->trueEnvironments())
98100
total_nb_internal += env->totalNbCellMat();
@@ -103,16 +105,24 @@ resizeComponentItemInternals(Int32 max_local_id, Int32 total_env_cell)
103105
// Maintenant récupère les vues sur chaque partie de 'm_component_item_internal_storage'
104106
{
105107
m_all_env_items_internal = m_component_item_internal_storage.subView(0, max_local_id);
108+
m_all_env_items_internal_range.setRange(0, max_local_id);
106109
m_env_items_internal = m_component_item_internal_storage.subView(max_local_id, total_env_cell);
110+
m_env_items_internal_range.setRange(max_local_id, total_env_cell);
107111
Int32 index_in_container = max_local_id + total_env_cell;
108112
for (const MeshEnvironment* env : m_material_mng->trueEnvironments()) {
109113
Int32 nb_cell_mat = env->totalNbCellMat();
110-
m_mat_items_internal[env->id()] = m_component_item_internal_storage.subView(index_in_container, nb_cell_mat);
114+
Int32 env_id = env->id();
115+
m_mat_items_internal[env_id] = m_component_item_internal_storage.subView(index_in_container, nb_cell_mat);
116+
m_mat_items_internal_range[env_id].setRange(index_in_container, nb_cell_mat);
111117
index_in_container += nb_cell_mat;
112118
}
113119
}
114120

115121
_resetItemsInternal();
122+
123+
// Met à jour les vues sur m_component_item_internal_storage.
124+
for (ComponentItemSharedInfo& x : m_shared_infos)
125+
x.m_component_item_internal_view = m_component_item_internal_storage;
116126
}
117127

118128
/*---------------------------------------------------------------------------*/
@@ -128,20 +138,22 @@ _initSharedInfos()
128138
// ne faut pas que conteneurs associés de \a m_materials_mng soient modifiées.
129139
// Normalement ce n'est pas le cas, car la liste des constituants est fixe.
130140
ComponentItemSharedInfo* info_mat = sharedInfo(LEVEL_MATERIAL);
141+
ComponentItemSharedInfo* info_env = sharedInfo(LEVEL_ENVIRONMENT);
142+
ComponentItemSharedInfo* info_all_env = sharedInfo(LEVEL_ALLENVIRONMENT);
143+
131144
info_mat->m_level = LEVEL_MATERIAL;
132145
info_mat->m_item_shared_info = item_shared_info;
133146
info_mat->m_components = m_material_mng->materialsAsComponents();
147+
info_mat->m_parent_component_item_shared_info = info_env;
134148

135-
ComponentItemSharedInfo* info_env = sharedInfo(LEVEL_ENVIRONMENT);
136149
info_env->m_level = LEVEL_ENVIRONMENT;
137150
info_env->m_item_shared_info = item_shared_info;
138151
info_env->m_components = m_material_mng->environmentsAsComponents();
152+
info_env->m_parent_component_item_shared_info = info_all_env;
139153

140-
ComponentItemSharedInfo* info_all_env = sharedInfo(LEVEL_ALLENVIRONMENT);
141154
info_all_env->m_level = LEVEL_ALLENVIRONMENT;
142155
info_all_env->m_item_shared_info = item_shared_info;
143156
info_all_env->m_components = ConstArrayView<IMeshComponent*>();
144-
145157
info() << "EndCreate ComponentItemInternalData nb_mat=" << info_mat->m_components.size()
146158
<< " nb_env=" << info_env->m_components.size();
147159
}

0 commit comments

Comments
 (0)