14#include "arcane/core/internal/ItemGroupInternal.h"
16#include "arcane/utils/ValueConvert.h"
17#include "arcane/utils/PlatformUtils.h"
18#include "arcane/utils/ITraceMng.h"
19#include "arcane/utils/ArrayUtils.h"
20#include "arcane/utils/ArgumentException.h"
22#include "arcane/core/ItemGroupObserver.h"
23#include "arcane/core/IItemFamily.h"
24#include "arcane/core/IMesh.h"
25#include "arcane/core/ItemPrinter.h"
26#include "arcane/core/MeshPartInfo.h"
28#include "arcane/core/internal/IDataInternal.h"
29#include "arcane/core/internal/ItemGroupImplInternal.h"
51ItemGroupInternal(IItemFamily* family,
const String& name)
53, m_mesh(family->mesh())
54, m_item_family(family)
55, m_variable_name(String(
"GROUP_")+family->name()+name)
57, m_kind(family->itemKind())
67ItemGroupInternal(IItemFamily* family,ItemGroupImpl* parent,
const String& name)
69, m_mesh(parent->mesh())
70, m_item_family(family)
72, m_variable_name(String(
"GROUP_")+m_item_family->name()+name)
74, m_kind(family->itemKind())
88 for(
const auto& i : m_observers ) {
91 delete m_variable_items_local_id;
92 delete m_compute_functor;
98void ItemGroupInternal::
102 m_full_name = m_item_family->fullName() +
"_" + m_name;
106 if (m_mesh && !m_parent){
107 int property = IVariable::PSubDomainDepend | IVariable::PPrivate;
108 VariableBuildInfo vbi(m_mesh,m_variable_name,property);
110 m_items_local_id = &m_variable_items_local_id->_internalTrueData()->_internalDeprecatedValue();
115 if (
auto v = Convert::Type<Int32>::tryParseFromEnvironment(
"ARCANE_APPLYOPERATION_VERSION",
true))
116 m_use_v2_for_apply_operation = (v.value()==2);
118 if (
auto v = Convert::Type<Int32>::tryParseFromEnvironment(
"ARCANE_DEBUG_APPLYOPERATION",
true))
119 m_is_debug_apply_operation = (v.value()>0);
122 if (
auto v = Convert::Type<Int32>::tryParseFromEnvironment(
"ARCANE_CHECK_SIMDPADDING",
true)){
123 m_is_check_simd_padding = (v.value()>0);
124 m_is_print_check_simd_padding = (v.value()>1);
127 if (
auto v = Convert::Type<Int32>::tryParseFromEnvironment(
"ARCANE_PRINT_APPLYSIMDPADDING",
true)){
128 m_is_print_apply_simd_padding = (v.value()>0);
129 m_is_print_stack_apply_simd_padding = (v.value()>1);
141 return m_item_family->itemsInternal();
142 return m_mesh->itemsInternal(m_kind);
148Int32 ItemGroupInternal::
151 return m_item_family->maxLocalId();
157ItemInfoListView ItemGroupInternal::
158itemInfoListView()
const
161 return m_item_family->itemInfoListView();
162 return m_mesh->itemFamily(m_kind)->itemInfoListView();
168void ItemGroupInternal::
172 ARCANE_FATAL(
"Call to _resetSubGroups() is only valid for group of AllItems");
174 m_own_group =
nullptr;
175 m_ghost_group =
nullptr;
176 m_interface_group =
nullptr;
177 m_node_group =
nullptr;
178 m_edge_group =
nullptr;
179 m_face_group =
nullptr;
180 m_cell_group =
nullptr;
181 m_inner_face_group =
nullptr;
182 m_outer_face_group =
nullptr;
183 m_active_cell_group =
nullptr;
184 m_own_active_cell_group =
nullptr;
185 m_active_face_group =
nullptr;
186 m_own_active_face_group =
nullptr;
187 m_inner_active_face_group =
nullptr;
188 m_outer_active_face_group =
nullptr;
189 m_level_cell_group.clear();
190 m_own_level_cell_group.clear();
191 m_children_by_type.clear();
192 m_children_by_type_ids.clear();
193 m_sub_groups.clear();
199void ItemGroupInternal::
200notifyExtendObservers(
const Int32ConstArrayView * info)
202 ARCANE_ASSERT((!m_need_recompute || m_is_all_items),(
"Operation on invalid group"));
203 for(
const auto& i : m_observers ) {
204 IItemGroupObserver * obs = i.second;
205 obs->executeExtend(info);
207 if (m_group_index_table.isUsed())
208 m_group_index_table->update();
214void ItemGroupInternal::
215notifyReduceObservers(
const Int32ConstArrayView * info)
217 ARCANE_ASSERT((!m_need_recompute || m_is_all_items),(
"Operation on invalid group"));
218 for(
const auto& i : m_observers ) {
219 IItemGroupObserver * obs = i.second;
220 obs->executeReduce(info);
222 if (m_group_index_table.isUsed())
223 m_group_index_table->update();
229void ItemGroupInternal::
230notifyCompactObservers(
const Int32ConstArrayView * info)
232 ARCANE_ASSERT((!m_need_recompute || m_is_all_items),(
"Operation on invalid group"));
233 for(
const auto& i : m_observers ) {
234 IItemGroupObserver * obs = i.second;
235 obs->executeCompact(info);
237 if (m_group_index_table.isUsed())
238 m_group_index_table->compact(info);
244void ItemGroupInternal::
245notifyInvalidateObservers()
247#ifndef NO_USER_WARNING
248#warning "(HP) Assertion need fix"
252 for(
const auto& i : m_observers ) {
253 IItemGroupObserver * obs = i.second;
254 obs->executeInvalidate();
256 if (m_group_index_table.isUsed())
257 m_group_index_table->update();
265void ItemGroupInternal::
268 m_is_contigous =
false;
271 m_is_contigous =
false;
277 for( Integer i=0, n=
lids.size(); i<n; ++i ){
284 m_is_contigous =
true;
290void ItemGroupInternal::
293 if (m_is_print_apply_simd_padding){
295 if (m_is_print_stack_apply_simd_padding)
296 stack =
String(
" stack=") + platform::getStackTrace();
298 tm->
info() <<
"ApplySimdPadding group_name=" << m_name << stack;
302 m_internal_api.notifySimdPaddingDone();
303 Arcane::applySimdPadding(mutableItemsLocalId());
334void ItemGroupInternal::
335checkUpdateSimdPadding()
337 if (m_simd_timestamp >= timestamp()){
339 if (m_is_check_simd_padding){
340 if (m_is_print_check_simd_padding && m_item_family){
342 tm->
info() <<
"check padding name=" << fullName()
343 <<
" timestamp=" << timestamp()
344 <<
" simd_timestamp=" << m_simd_timestamp
345 <<
" size=" << mutableItemsLocalId().size()
346 <<
" capacity=" << mutableItemsLocalId().capacity();
348 ArrayUtils::checkSimdPadding(itemsLocalId());
352 this->applySimdPadding();
358void ItemGroupInternal::
361 if ( !((!m_need_recompute && !isAllItems()) || (m_transaction_mode && isAllItems())) )
364 if (m_compute_functor && !m_transaction_mode)
365 ARCANE_FATAL(
"Cannot remove items on computed group ({0})", name());
372 if (isOwn() &&
amesh->meshPartInfo().nbPart()!=1)
401 items_lid.resize(nb_item);
408 UniqueArray<bool> remove_flags(maxLocalId(),
false);
409 for(
Int32 i=0; i<nb_item_to_remove; ++i )
410 remove_flags[items_local_id[i]] =
true;
413 Int32 next_index = 0;
414 for(
Int32 i=0; i<old_size; ++i ){
415 Int32 lid = items_lid[i];
416 if (remove_flags[lid]) {
417 removed_local_ids.add(lid);
420 items_lid[next_index] = lid;
423 if (next_index!=old_size) {
425 items_lid.resize(next_index);
432 trace->
info(5) <<
"ItemGroupImpl::removeItems() group <" << name() <<
"> "
433 <<
" old_size=" << old_size
434 <<
" new_size=" << nbItem()
435 <<
" removed?=" << has_removed;
441 notifyReduceObservers(&observation_info);
447void ItemGroupInternal::
450 ITraceMng* msg = mesh()->traceMng();
451 if (m_need_recompute && m_compute_functor) {
452 msg->debug(
Trace::High) <<
"ItemGroupImpl::checkValid on " << name() <<
" : skip group to recompute";
459 UniqueArray<bool> presence_checks(maxLocalId());
460 presence_checks.fill(0);
464 Integer items_size = items.size();
467 for( Integer i=0, is=items_lid.size(); i<is; ++i ){
469 if (lid>=items_size){
471 msg->error() <<
"Wrong local index lid=" << lid <<
" max=" << items_size
472 <<
" var_max_size=" << maxLocalId();
477 ItemInternal* item = items[lid];
478 if (item->isSuppressed()){
480 msg->error() <<
"Item " << ItemPrinter(item) <<
" in group "
481 << name() <<
" does not exist anymore";
485 if (presence_checks[lid]){
487 msg->error() <<
"Item " << ItemPrinter(item) <<
" in group "
488 << name() <<
" was found twice or more";
492 presence_checks[lid] =
true;
495 for( Integer i=0, n=items_lid.size(); i<n; ++i ){
496 Int32 local_id = items_lid[i];
497 Int32 index_in_all_group = m_items_index_in_all_group[local_id];
498 if (index_in_all_group!=i){
500 msg->
error() << A_FUNCINFO
502 <<
": incoherence between 'local_id' and index in the group 'All' "
504 <<
" local_id=" << local_id
505 <<
" index=" << index_in_all_group;
512 String parent_name =
"none";
514 parent_name = m_parent->name();
515 ARCANE_FATAL(
"Error in group name='{0}' parent='{1}' nb_error={2}",
516 name(),parent_name,nb_error);
523void ItemGroupInternal::
524_notifyDirectRemoveItems(SmallSpan<const Int32> removed_ids,
Int32 nb_remaining)
526 mutableItemsLocalId().resize(nb_remaining);
533 notifyReduceObservers(&observation_info);
542void ItemGroupImplInternal::
543setAsConstituentGroup()
545 m_p->m_is_constituent_group =
true;
554 return m_p->itemsLocalId();
560void ItemGroupImplInternal::
569void ItemGroupImplInternal::
570notifySimdPaddingDone()
572 m_p->m_simd_timestamp = m_p->timestamp();
578void ItemGroupImplInternal::
583 VariableUtils::experimentalChangeAllocator(v->
variable(),
mem);
#define ARCANE_THROW(exception_class,...)
Macro pour envoyer une exception avec formattage.
#define ARCANE_FATAL(...)
Macro envoyant une exception FatalErrorException.
Fonctions utilitaires sur les variables.
Tableau d'items de types quelconques.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
IVariable * variable() const
Variable associée.
Exception lorsqu'un argument est invalide.
Vue constante d'un tableau de type T.
Interface du gestionnaire de traces.
virtual TraceMessage info()=0
Flot pour un message d'information.
Exception lorsqu'une opération n'est pas supportée.
Chaîne de caractères unicode.
ITraceMng * traceMng() const
Gestionnaire de trace.
TraceMessage error() const
Flot pour un message d'erreur.
TraceMessage info() const
Flot pour un message d'information.
VariableRefArrayT< Int32 > VariableArrayInt32
Variable tableau de type entier 32 bits.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
eMemoryRessource
Liste des ressources mémoire disponibles.
bool arcaneIsCheck()
Vrai si on est en mode vérification.
ConstArrayView< Int32 > Int32ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
ConstArrayView< ItemInternal * > ItemInternalList
Type de la liste interne des entités.
const char * itemKindName(eItemKind kind)
Nom du genre d'entité.
Int32 Integer
Type représentant un entier.