Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
Otf2MessagePassingProfilingService.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/* Otf2MessagePassingProfilingService.h (C) 2000-2025 */
9/* */
10/* Informations de performances du "message passing" au format Otf2 */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_STD_INTERNAL_OTF2MESSAGEPASSINGPROFILINGSERVICE_H
13#define ARCANE_STD_INTERNAL_OTF2MESSAGEPASSINGPROFILINGSERVICE_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/IMessagePassingProfilingService.h"
18#include "arcane/utils/String.h"
19
20#include "arcane/core/AbstractService.h"
21#include "arcane/core/ISubDomain.h"
22#include "arcane/core/ObserverPool.h"
23#include "arcane/core/VariableSynchronizerEventArgs.h"
24
25#include "arcane/std/internal/Otf2LibWrapper.h"
26#include "arcane/std/internal/Otf2MpiProfiling.h"
27
28#include "arccore/message_passing/Stat.h"
29
30/*---------------------------------------------------------------------------*/
31/*---------------------------------------------------------------------------*/
32
33namespace Arcane
34{
35namespace MP = ::Arccore::MessagePassing;
36
37/*---------------------------------------------------------------------------*/
38/*---------------------------------------------------------------------------*/
43: public AbstractService
45{
46 public:
47 explicit Otf2MessagePassingProfilingService(const ServiceBuildInfo& sbi);
48 ~Otf2MessagePassingProfilingService() noexcept override;
49
50 void startProfiling() override;
51 void stopProfiling() override;
52 void printInfos(std::ostream& output) override;
53 String implName() override;
54
55 private:
56 void _updateFromBeginEntryPointEvt();
57 void _updateFromEndEntryPointEvt();
58 void _updateFromSynchronizeEvt(const VariableSynchronizerEventArgs& arg);
59
60 ISubDomain* m_sub_domain = nullptr;
61 Otf2LibWrapper m_otf2_wrapper;
62 Otf2MpiProfiling m_otf2_prof;
63 MP::IProfiler* m_prof_backup = nullptr;
64 ObserverPool m_observer;
65 EventObserverPool m_observer_pool;
66 String m_impl_name;
67 MP::IControlDispatcher* m_control_dispatcher = nullptr;
68};
69
70/*---------------------------------------------------------------------------*/
71/*---------------------------------------------------------------------------*/
72
73} // namespace Arcane
74
75/*---------------------------------------------------------------------------*/
76/*---------------------------------------------------------------------------*/
77
78#endif
Classe de base d'un service.
Conserve des références d'observateurs.
Definition Event.h:143
Interface d'un service de profiling dedie au "message passing".
Interface du gestionnaire d'un sous-domaine.
Definition ISubDomain.h:74
Manage control streams for parallel messages.
Interface d'un profiler pour les échanges de messages.
Definition IProfiler.h:31
Liste d'observateurs.
Classe d'encapsulation des fonctions de la librairie OTF2.
Service de profiling du "message passing" au format JSON.
void printInfos(std::ostream &output) override
Affiche les informations issues du profiling.
String implName() override
Donne le nom du service qui implemente l'interface.
Implementation de l'interface des operations MPI. Decore chacun des appels MPI avec les fonctions de ...
Chaîne de caractères unicode.
Arguments de l'évènement notifiant une synchronisation de variables.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Espace de nommage contenant les types et déclarations qui gèrent le mécanisme de parallélisme par éch...