14#include "arcane/core/ISerializer.h"
15#include "arcane/core/ItemPrinter.h"
16#include "arcane/core/IMesh.h"
17#include "arcane/core/IParallelMng.h"
19#include "arcane/mesh/ParticleFamilySerializer.h"
20#include "arcane/mesh/ParticleFamily.h"
31ParticleFamilySerializer::
33: TraceAccessor(family->traceMng())
41void ParticleFamilySerializer::
48 case ISerializer::ModeReserve:
57 for(
Integer z=0; z<nb_item; ++z ){
58 particle_unique_ids[z] = items_internal.
uniqueId(local_ids[z]).asInt64();
60 sbuf->
putSpan(particle_unique_ids);
64 for(
Integer z=0; z<nb_item; ++z ){
65 Particle item(items_internal[local_ids[z]]);
67 particles_cell_uid[z] = (has_cell) ? item.
cell().
uniqueId() : NULL_ITEM_UNIQUE_ID;
69 sbuf->
putSpan(particles_cell_uid);
81void ParticleFamilySerializer::
94 particles_uid.
resize(nb_item);
96 cells_unique_id.
resize(nb_item);
97 cells_local_id.
resize(nb_item);
100 Int32Array* particles_local_id = (local_ids) ? local_ids : &temporary_particles_local_id;
101 particles_local_id->
resize(nb_item);
112 if (!m_family->getEnableGhostItems()){
113 m_family->addParticles(particles_uid,local_ids_view);
116 particles_owner.
resize(nb_item) ;
117 for(
Integer zz=0; zz<nb_item; ++zz ){
118 Int32 cell_lid = cells_local_id[zz];
119 if (cell_lid!=NULL_ITEM_LOCAL_ID){
120 Cell c = internal_cells[ cell_lid ];
121 particles_owner[zz] = c.
owner() ;
124 particles_owner[zz] = NULL_SUB_DOMAIN_ID;
127 m_family->addParticles2(particles_uid,particles_owner,local_ids_view);
132 for(
Integer zz=0; zz<nb_item; ++zz ){
133 Particle p = internal_particles[ local_ids_view[zz] ];
134 Int32 cell_lid = cells_local_id[zz];
135 if (cell_lid!=NULL_ITEM_LOCAL_ID){
136 Cell c = internal_cells[ cell_lid ];
137 m_family->setParticleCell(p,c);
140 m_family->setParticleCell(p,
Cell());
void resize(Int64 s)
Change le nombre d'éléments du tableau à s.
ArrayView< T > view() const
Vue mutable sur ce tableau.
Vue sur les informations des mailles.
constexpr Integer size() const noexcept
Nombre d'éléments du tableau.
Interface d'une famille d'entités.
virtual void itemsUniqueIdToLocalId(Int32ArrayView local_ids, Int64ConstArrayView unique_ids, bool do_fatal=true) const =0
Converti un tableau de numéros uniques en numéros locaux.
Interface d'un sérialiseur.
void reserveInt64(Int64 n)
Réserve pour n Int64.
@ ModePut
Le sérialiseur attend des reserve()
@ ModeGet
Le sérialiseur attend des get()
virtual Int64 getInt64()=0
Récupère une taille.
virtual void putSpan(Span< const Real > values)
Ajoute le tableau values.
virtual eMode mode() const =0
Mode de fonctionnement actuel.
virtual void getSpan(Span< Real > values)
Récupère le tableau values.
virtual void reserveSpan(eBasicDataType dt, Int64 n)=0
Réserve de la mémoire pour n valeurs de dt.
virtual void putInt64(Int64 value)=0
Ajoute l'entier value.
__host__ __device__ ItemUniqueId uniqueId(Int32 local_id) const
uniqueId() de l'entité de numéro local local_id
Vue sur une liste pour obtenir des informations sur les entités.
Int32 owner() const
Numéro du sous-domaine propriétaire de l'entité
ItemUniqueId uniqueId() const
Identifiant unique sur tous les domaines.
void deserializeItems(ISerializer *buf, Int32Array *local_ids) override
Désérialise depuis buf les entités de la famille family().
bool hasCell() const
Vrai si la particule est dans une maille du maillage.
Cell cell() const
Maille à laquelle appartient la particule. Il faut appeler setCell() avant d'appeler cette fonction....
UniqueArray< Int64 > Int64UniqueArray
Tableau dynamique à une dimension d'entiers 64 bits.
std::int64_t Int64
Type entier signé sur 64 bits.
Int32 Integer
Type représentant un entier.
ConstArrayView< Int32 > Int32ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
@ Int64
Donnée de type entier 64 bits.
ConstArrayView< ItemInternal * > ItemInternalList
Type de la liste interne des entités.
UniqueArray< Int32 > Int32UniqueArray
Tableau dynamique à une dimension d'entiers 32 bits.
ArrayView< Int32 > Int32ArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
Array< Int32 > Int32Array
Tableau dynamique à une dimension d'entiers 32 bits.
std::int32_t Int32
Type entier signé sur 32 bits.