Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
Otf2LibWrapper.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/* Otf2LibWrapper.h (C) 2000-2025 */
9/* */
10/* Classe qui encapsule les fonctions utiles de la lib Otf2. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_STD_OTF2LIBWRAPPER_H
13#define ARCANE_STD_OTF2LIBWRAPPER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19#include "arcane/utils/String.h"
20
21#include "arcane/core/ISubDomain.h"
22
23#include "otf2/otf2.h"
24
25#include <vector>
26#include <set>
27
28/*---------------------------------------------------------------------------*/
29/*---------------------------------------------------------------------------*/
30
31namespace Arcane
32{
33
34/*---------------------------------------------------------------------------*/
35/*---------------------------------------------------------------------------*/
41{
42 public:
43 Otf2LibWrapper(ISubDomain* sub_domain);
45
46 void init(const String& archive_name);
47 void finalize();
48
49 OTF2_EvtWriter* getEventWriter();
50 uint32_t getEntryPointId(const String& ep_name) const;
51 uint32_t getApplicationNameId() const;
52 uint32_t getSynchronizeId() const;
53 int getMpiRank() const;
54 int getMpiNbRank() const;
55
56 static OTF2_TimeStamp getTime();
57
58 private:
59 void _createOtf2Ids();
60 void _buildOtf2ClockAndStringDefinition(uint64_t global_start_time, uint64_t global_end_time);
65
66 static OTF2_FlushType _preFlush(void* user_data,OTF2_FileType file_type, OTF2_LocationRef location, void* caller_data, bool final);
67 static OTF2_TimeStamp _postFlush(void* user_data, OTF2_FileType file_type, OTF2_LocationRef location);
68
69 public:
70 // Une structure simple pour associer un nom de point d'entree avec un identifiant
71 struct EntryPointId {
72 EntryPointId(String name, Integer id) : m_name(name), m_id(id) {}
73 String m_name;
74 Integer m_id;
75 // Foncteur pour pouvoir faire un "heterogeneous lookup" sur le nom pour l'id
77 using is_transparent = void;
78 bool operator()(const EntryPointId& lhs, const EntryPointId& rhs) const
79 {
80 return lhs.m_name < rhs.m_name;
81 }
82 bool operator()(const String& name, const EntryPointId& ep_id) const
83 {
84 return name < ep_id.m_name;
85 }
86 bool operator()(const EntryPointId& ep_id, const String& name) const
87 {
88 return ep_id.m_name < name;
89 }
90 };
91 };
92
93 private:
94 // Structure interne pour la gestion des indices et decalages...
95 struct InternalIds {
96 uint32_t m_desc_offset; // decalage des description pour les noms des op MPI
97 uint32_t m_empty_id; // id pour la string vide
98 uint32_t m_thread_id; // id pour le nom du thread CPU mappe sur le process MPI
99 uint32_t m_hostname_id; // id pour le nom de la machine
100 uint32_t m_class_id; // id pour la classe de la machine
101 uint32_t m_comm_world_id; // id pour le MPI_COMM_WOLRD
102 uint32_t m_mpi_id; // id pour la string MPI
103 uint32_t m_comm_id; // id pour la string du paradigm MPI
104 uint32_t m_win_id; // id pour la string du paradigm MPI
105 uint32_t m_comm_self_id; // id pour la string du comme self
106 uint32_t m_ep_id; // id pour la string Entry Point
107 uint32_t m_sync_id; // id pour la string Synchronize
108 uint32_t m_app_name; // id pour le nom de l'application
109 uint32_t m_rank_offset; // decalage pour les ranks MPI
110 std::set<EntryPointId, EntryPointId::EntryPointIdCompare> m_ep_id_set;
111 // Ensemble des noms des points d'entree et leur id
112 };
113
114 ISubDomain* m_sub_domain = nullptr;
115 OTF2_Archive* m_archive = nullptr;
116 OTF2_FlushCallbacks m_flush_callbacks;
117 OTF2_EvtWriter* m_evt_writer = nullptr;
118 uint64_t m_evt_nb = 0;
119 OTF2_GlobalDefWriter* m_global_def_writer = nullptr;
120 static uint64_t s_epoch_start;
121 InternalIds m_id;
122 std::vector<uint64_t> m_comm_members;
123};
124
125/*---------------------------------------------------------------------------*/
126/*---------------------------------------------------------------------------*/
127
128} // namespace Arcane
129
130/*---------------------------------------------------------------------------*/
131/*---------------------------------------------------------------------------*/
132
133#endif
Déclarations des types de la composante 'base' de Arccore.
Interface du gestionnaire d'un sous-domaine.
Definition ISubDomain.h:74
Otf2LibWrapper(ISubDomain *sub_domain)
Constructeur.
~Otf2LibWrapper()
Destructeur.
void _buildOtf2ClockAndStringDefinition(uint64_t global_start_time, uint64_t global_end_time)
static uint64_t s_epoch_start
Static member.
void init(const String &archive_name)
Methode d'initialisation. Permet de definir le chemin ou va se trouver l'archive ainsi que son nom.
void _buildOtf2ParadigmAndSystemDefinition()
uint32_t getApplicationNameId() const
Helper sur le nom de l'application.
OTF2_EvtWriter * getEventWriter()
int getMpiNbRank() const
Helper sur le nombre de rank MPI.
void _buildOtf2LocationDefinition()
Methode interne pour ecrire la definition du systeme associee a l'archive otf2.
static OTF2_TimeStamp getTime()
Méthode interne statique pour recuperer le timestamp.
void finalize()
Methode a appeler pour finaliser la creation de l'archive (i.e. on ne veut plus enregistrer plus d'ev...
static OTF2_TimeStamp _postFlush(void *user_data, OTF2_FileType file_type, OTF2_LocationRef location)
Méthode interne statique pour positionner la callback a appeler apres l'evenement a enregistrer.
static OTF2_FlushType _preFlush(void *user_data, OTF2_FileType file_type, OTF2_LocationRef location, void *caller_data, bool final)
Méthode interne statique pour positionner la callback a appeler avant l'evenement a enregistrer.
int getMpiRank() const
Helper sur le numero de rank MPI.
uint32_t getEntryPointId(const String &ep_name) const
Helper pour l'id d'un point d'entree via son nom.
uint32_t getSynchronizeId() const
Helper sur la chaine de charactere "syncrhonize".
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Int32 Integer
Type représentant un entier.