Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
MetisGraphDigest.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/* MetisGraphDigest.h (C) 2000-2024 */
9/* */
10/* Calcule une somme de contrôle globale des entrées/sorties Metis. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_STD_INTERNAL_METISGRAPHDIGEST
13#define ARCANE_STD_INTERNAL_METISGRAPHDIGEST
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/String.h"
18#include "arcane/utils/TraceAccessor.h"
19
21
22#include "arcane/std/internal/MetisGraph.h"
23
24#include <string>
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28
29namespace Arcane
30{
31
32/*---------------------------------------------------------------------------*/
33/*---------------------------------------------------------------------------*/
38: public TraceAccessor
39{
40 public:
41
42 explicit MetisGraphDigest(IParallelMng* pm);
43
44 public:
45
52 String computeInputDigest(const bool need_part, const int nb_options,
53 const MetisGraphView& my_graph, const idx_t* vtxdist, const idx_t* wgtflag,
54 const idx_t* numflag, const idx_t* ncon, const idx_t* nparts,
55 const real_t* tpwgts, const real_t* ubvec, const real_t* ipc2redist,
56 const idx_t* options);
57
65
66 private:
67
68 IParallelMng* m_parallel_mng = nullptr;
69 Int32 m_my_rank = A_NULL_RANK;
70 Int32 m_nb_rank = 0;
71
72 private:
73
74 void _computeHash(Span<const idx_t> data, ByteArray& output, const char* name);
75 void _computeHash(Span<const real_t> data, ByteArray& output, const char* name);
77};
78
79/*---------------------------------------------------------------------------*/
80/*---------------------------------------------------------------------------*/
81
82} // namespace Arcane
83
84/*---------------------------------------------------------------------------*/
85/*---------------------------------------------------------------------------*/
86
87#endif
Déclarations des types généraux de Arcane.
Tableau d'items de types quelconques.
Interface du gestionnaire de parallélisme pour un sous-domaine.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Calcule une somme de contrôle globale des entrées/sorties Metis.
String _digestString(ConstArrayView< Byte > my_digest)
A partir de la somme locale, calcule la somme globale et retourne une chaine de caractères représenta...
String computeInputDigest(const bool need_part, const int nb_options, const MetisGraphView &my_graph, const idx_t *vtxdist, const idx_t *wgtflag, const idx_t *numflag, const idx_t *ncon, const idx_t *nparts, const real_t *tpwgts, const real_t *ubvec, const real_t *ipc2redist, const idx_t *options)
String computeOutputDigest(const MetisGraphView &my_graph, const idx_t *edgecut)
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-