Arcane  v3.14.10.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-2022 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-2021 */
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/IGetVariablesValuesParallelOperation.h"
18
19#include "arcane/utils/Array.h"
20
21/*---------------------------------------------------------------------------*/
22/*---------------------------------------------------------------------------*/
23
24namespace Arcane
25{
26
27/*---------------------------------------------------------------------------*/
28/*---------------------------------------------------------------------------*/
34{
35 private:
36 class Helper
37 {
38 public:
39 SharedArray<Int64> m_unique_ids;
40 SharedArray<Int32> m_indexes;
41 };
42 public:
45
46 public:
47
48 virtual IParallelMng* parallelMng();
49
50 public:
51
52 virtual void getVariableValues(VariableItemReal& variable,
54 RealArrayView values);
55
56 virtual void getVariableValues(VariableItemReal& variable,
59 RealArrayView values);
60 private:
61
62 IParallelMng* m_parallel_mng;
63
64 private:
65
66 void _deleteMessages(Array<ISerializeMessage*>& messages);
67
68 template<class Type>
69 void _getVariableValues(ItemVariableScalarRefT<Type>& variable,
71 ArrayView<Type> values);
72
73 template<class Type>
74 void _getVariableValuesSequential(ItemVariableScalarRefT<Type>& variable,
76 ArrayView<Type> values);
77};
78
79/*---------------------------------------------------------------------------*/
80/*---------------------------------------------------------------------------*/
81
82} // End namespace Arcane
83
84/*---------------------------------------------------------------------------*/
85/*---------------------------------------------------------------------------*/
86
87#endif
Opérations pour accéder aux valeurs de variables d'un autre sous-domaine.
Opérations pour accéder aux valeurs de variables d'un autre sous-domaine.
Interface du gestionnaire de parallélisme pour un sous-domaine.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Vue modifiable d'un tableau d'un type T.
Vue constante d'un tableau de type T.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-