Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
GetVariablesValuesParallelOperation.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2025 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/* GetVariablesValuesParallelOperation.h (C) 2000-2025 */
9/* */
10/* Opérations pour accéder aux valeurs de variables d'un autre sous-domaine. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_IMPL_GETVARIABLESVALUESPARALLELOPERATION_H
13#define ARCANE_IMPL_GETVARIABLESVALUESPARALLELOPERATION_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/core/IGetVariablesValuesParallelOperation.h"
18
19#include "arcane/utils/Array.h"
20
21/*---------------------------------------------------------------------------*/
22/*---------------------------------------------------------------------------*/
23
24namespace Arcane
25{
26
27/*---------------------------------------------------------------------------*/
28/*---------------------------------------------------------------------------*/
32class ARCANE_IMPL_EXPORT GetVariablesValuesParallelOperation
34{
35 private:
36
37 class Helper
38 {
39 public:
40 SharedArray<Int64> m_unique_ids;
41 SharedArray<Int32> m_indexes;
42 };
43
44 public:
45
46 explicit GetVariablesValuesParallelOperation(IParallelMng* pm);
47
48 public:
49
50 IParallelMng* parallelMng() override;
51
52 public:
53
55 Int64ConstArrayView unique_ids,
56 RealArrayView values) override;
57
59 Int64ConstArrayView unique_ids,
60 Int32ConstArrayView sub_domain_ids,
61 RealArrayView values) override;
62
63 private:
64
65 IParallelMng* m_parallel_mng = nullptr;
66
67 private:
68
69 template<class Type>
70 void _getVariableValues(ItemVariableScalarRefT<Type>& variable,
71 Int64ConstArrayView unique_ids,
72 ArrayView<Type> values);
73
74 template<class Type>
75 void _getVariableValuesSequential(ItemVariableScalarRefT<Type>& variable,
76 Int64ConstArrayView unique_ids,
77 ArrayView<Type> values);
78};
79
80/*---------------------------------------------------------------------------*/
81/*---------------------------------------------------------------------------*/
82
83} // End namespace Arcane
84
85/*---------------------------------------------------------------------------*/
86/*---------------------------------------------------------------------------*/
87
88#endif
Vue modifiable d'un tableau d'un type T.
void getVariableValues(VariableItemReal &variable, Int64ConstArrayView unique_ids, RealArrayView values) override
Récupère les valeurs d'une variable sur des entités distantes.
void getVariableValues(VariableItemReal &variable, Int64ConstArrayView unique_ids, Int32ConstArrayView sub_domain_ids, RealArrayView values) override
Récupère les valeurs d'une variable sur des entités distantes.
Opérations pour accéder aux valeurs de variables d'un autre sous-domaine.
Interface du gestionnaire de parallélisme pour un sous-domaine.
Variable scalaire sur un type d'entité du maillage.
Vecteur 1D de données avec sémantique par référence.
ItemVariableScalarRefT< Real > VariableItemReal
Grandeur de type réel.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
ConstArrayView< Int32 > Int32ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
Definition UtilsTypes.h:569
ConstArrayView< Int64 > Int64ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 64 bits.
Definition UtilsTypes.h:567
ArrayView< Real > RealArrayView
Equivalent C d'un tableau à une dimension de réels.
Definition UtilsTypes.h:546