Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
ParallelDataReader.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2024 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/* ParallelDataReader.h (C) 2000-2024 */
9/* */
10/* Lecteur de IData en parallèle. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_STD_INTERNAL_PARALLELDATAREADER_H
13#define ARCANE_STD_INTERNAL_PARALLELDATAREADER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24class IParallelMng;
25class IData;
26
27/*---------------------------------------------------------------------------*/
28/*---------------------------------------------------------------------------*/
47{
48 class Impl;
49
50 public:
51
52 explicit ParallelDataReader(IParallelMng* pm);
55
56 public:
57
58 Array<Int64>& writtenUniqueIds();
59 Array<Int64>& wantedUniqueIds();
60 void sort();
61 void getSortedValues(IData* written_data,IData* data);
62
63 private:
64
65 Impl* m_p;
66};
67
68/*---------------------------------------------------------------------------*/
69/*---------------------------------------------------------------------------*/
70
71} // End namespace Arcane
72
73/*---------------------------------------------------------------------------*/
74/*---------------------------------------------------------------------------*/
75
76#endif
Déclarations des types utilisés dans Arcane.
Interface d'une donnée.
Definition IData.h:33
Interface du gestionnaire de parallélisme pour un sous-domaine.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-