Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
IMessagePassingProfilingService.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 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/* IMessagePassingProfilingService.h (C) 2000-2016 */
9/* */
10/* Interface d'un service de profiling dédié au "message passing" */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_IMESSAGEPASSINGPROFILINGSERVICE_H
13#define ARCANE_IMESSAGEPASSINGPROFILINGSERVICE_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22ARCANE_BEGIN_NAMESPACE
23
24/*---------------------------------------------------------------------------*/
25/*---------------------------------------------------------------------------*/
32class ARCANE_UTILS_EXPORT IMessagePassingProfilingService
33{
34 public:
35
37
38 public:
39
41 virtual void startProfiling() =0;
42
44 virtual void stopProfiling() =0;
45
47 virtual void printInfos(std::ostream& output) =0;
48
50 virtual String implName() =0;
51};
52
53/*---------------------------------------------------------------------------*/
54/*---------------------------------------------------------------------------*/
55
56ARCANE_END_NAMESPACE
57
58/*---------------------------------------------------------------------------*/
59/*---------------------------------------------------------------------------*/
60
61#endif
Fichier de configuration d'Arcane.
Interface d'un service de profiling dedie au "message passing".
virtual void startProfiling()=0
Démarre un profiling.
virtual void stopProfiling()=0
Stoppe le profiling.
virtual String implName()=0
Donne le nom du service qui implemente l'interface.
virtual void printInfos(std::ostream &output)=0
Affiche les informations issues du profiling.
Chaîne de caractères unicode.