Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
MeshStats.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/* MeshStats.h (C) 2000-2024 */
9/* */
10/* Statistiques sur le maillage. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_MESHSTATS_H
13#define ARCANE_CORE_MESHSTATS_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/TraceAccessor.h"
18
20#include "arcane/core/IMeshStats.h"
21
22/*---------------------------------------------------------------------------*/
23/*---------------------------------------------------------------------------*/
24
25namespace Arcane
26{
27
28/*---------------------------------------------------------------------------*/
29/*---------------------------------------------------------------------------*/
30
31class IMesh;
32class IParallelMng;
33class StringDictionary;
34
35/*---------------------------------------------------------------------------*/
36/*---------------------------------------------------------------------------*/
37
38class ARCANE_CORE_EXPORT MeshStats
39: public TraceAccessor
40, public IMeshStats
41{
42 public:
43
45
46 public:
47
48 void dumpStats() override;
49
50 void dumpGraphStats() override;
51
52 private:
53
54 IMesh* m_mesh = nullptr;
55 IParallelMng* m_parallel_mng = nullptr;
56
57 private:
58
59 template<typename T>
60 void _dumpStats();
61
62 template<typename T>
63 void _computeElementsOnGroup(Int64ArrayView nb_type,Int64ArrayView nb_kind, Integer istat);
64
65 template<typename T>
66 void _statLabel(const String& name);
67
68 void _computeElementsOnGroup(Int64ArrayView nb_type,Int64ArrayView nb_kind,
69 ItemGroup group,Integer istat);
70
71 void _printInfo(const String& name,Int64 nb_local,
72 Int64 nb_local_min,Integer min_rank,
73 Int64 nb_local_max,Integer max_rank,
74 Int64 nb_global,Integer nb_rank);
75 void _computeNeighboorsComm();
76 void _dumpLegacyConnectivityMemoryUsage();
77 void _dumpIncrementalConnectivityMemoryUsage();
78 void _dumpCommunicatingRanks();
79};
80
81/*---------------------------------------------------------------------------*/
82/*---------------------------------------------------------------------------*/
83
84} // End namespace Arcane
85
86/*---------------------------------------------------------------------------*/
87/*---------------------------------------------------------------------------*/
88
89#endif
Déclarations des types généraux de Arcane.
Interface d'une classe donnant des informations sur le maillage.
Definition IMeshStats.h:37
Interface du gestionnaire de parallélisme pour un sous-domaine.
Groupe d'entités de maillage.
Definition ItemGroup.h:49
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Vue modifiable d'un tableau d'un type T.
Interface du gestionnaire de traces.
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-