12#ifndef ARCANE_STD_OTF2LIBWRAPPER_H
13#define ARCANE_STD_OTF2LIBWRAPPER_H
19#include "arcane/utils/String.h"
21#include "arcane/core/ISubDomain.h"
56 static OTF2_TimeStamp
getTime();
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);
72 EntryPointId(
String name,
Integer id) : m_name(name), m_id(
id) {}
77 using is_transparent = void;
78 bool operator()(
const EntryPointId& lhs,
const EntryPointId& rhs)
const
80 return lhs.m_name < rhs.m_name;
82 bool operator()(
const String& name,
const EntryPointId& ep_id)
const
84 return name < ep_id.m_name;
86 bool operator()(
const EntryPointId& ep_id,
const String& name)
const
88 return ep_id.m_name < name;
96 uint32_t m_desc_offset;
99 uint32_t m_hostname_id;
101 uint32_t m_comm_world_id;
105 uint32_t m_comm_self_id;
109 uint32_t m_rank_offset;
110 std::set<EntryPointId, EntryPointId::EntryPointIdCompare> m_ep_id_set;
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;
122 std::vector<uint64_t> m_comm_members;
Déclarations des types de la composante 'base' de Arccore.
Interface du gestionnaire d'un sous-domaine.
Otf2LibWrapper(ISubDomain *sub_domain)
Constructeur.
~Otf2LibWrapper()
Destructeur.
void _buildOtf2ClockAndStringDefinition(uint64_t global_start_time, uint64_t global_end_time)
void _buildOtf2GroupAndCommDefinition()
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.
void _buildOtf2RegionDefinition()
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.