DFT-EFE
 
Loading...
Searching...
No Matches
Profiler.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (c) 2021. *
3 * The Regents of the University of Michigan and DFT-EFE developers. *
4 * *
5 * This file is part of the DFT-EFE code. *
6 * *
7 * DFT-EFE is free software: you can redistribute it and/or modify *
8 * it under the terms of the Lesser GNU General Public License as *
9 * published by the Free Software Foundation, either version 3 of *
10 * the License, or (at your option) any later version. *
11 * *
12 * DFT-EFE is distributed in the hope that it will be useful, but *
13 * WITHOUT ANY WARRANTY; without even the implied warranty *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
15 * See the Lesser GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU Lesser General Public *
18 * License at the top level of DFT-EFE distribution. If not, see *
19 * <https://www.gnu.org/licenses/>. *
20 ******************************************************************************/
21
22/*
23 * @author Avirup Sircar
24 */
25
26#ifndef dftefeProfiler_h
27#define dftefeProfiler_h
28
29#include <utils/TypeConfig.h>
30#include <utils/MPITypes.h>
31#include <list>
32#include <map>
33#include <iomanip>
34#include <utils/Timer.h>
35#include <iostream>
36#include <string>
37#include <vector>
38#include <chrono>
39namespace dftefe
40{
41 namespace utils
42 {
44 {
45 public:
46 struct Section
47 {
50 unsigned int nCalls;
51 };
52
53 Profiler(const std::string &profileName = "");
54
55 Profiler(const mpi::MPIComm &mpiComm,
56 const std::string & profileName = "");
57
58 Profiler(const mpi::MPIComm & mpiComm,
59 const ConditionalOStream &stream,
60 const std::string & profileName = "");
61
62 ~Profiler();
63
64 void
65 registerStart(const std::string &sectionName);
66 void
67 registerEnd(const std::string &sectionName = "");
68 void
69 print() const;
70 Timer
71 getSectionTimer(const std::string &sectionName) const;
72 double
73 getSectionTotalWallTime(const std::string &sectionName) const;
74 unsigned int
75 getSectionCalls(const std::string &sectionName) const;
76 void
77 reset();
78
79 private:
80 std::map<std::string, Section> d_SectionsMap;
81 std::list<std::string> d_activeSections;
85 std::string d_profileName;
86
87 }; // end of class Profiler
88 } // end of namespace utils
89} // end of namespace dftefe
90#endif // dftefeProfiler_h
Provides an interface to print based on whether a certain condition is met or not....
Definition: ConditionalOStream.h:47
Definition: Profiler.h:44
void print() const
Definition: Profiler.cpp:153
Timer d_totalTime
Definition: Profiler.h:84
std::list< std::string > d_activeSections
Definition: Profiler.h:81
void registerStart(const std::string &sectionName)
Definition: Profiler.cpp:71
std::map< std::string, Section > d_SectionsMap
Definition: Profiler.h:80
~Profiler()
Definition: Profiler.cpp:61
const mpi::MPIComm d_mpiComm
Definition: Profiler.h:83
std::string d_profileName
Definition: Profiler.h:85
unsigned int getSectionCalls(const std::string &sectionName) const
Definition: Profiler.cpp:282
double getSectionTotalWallTime(const std::string &sectionName) const
Definition: Profiler.cpp:264
ConditionalOStream d_stream
Definition: Profiler.h:82
void reset()
Definition: Profiler.cpp:300
void registerEnd(const std::string &sectionName="")
Definition: Profiler.cpp:114
Timer getSectionTimer(const std::string &sectionName) const
Definition: Profiler.cpp:246
Definition: Timer.h:42
int MPIComm
Definition: MPITypes.h:83
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
Definition: Profiler.h:47
double totalWallTime
Definition: Profiler.h:49
Timer timer
Definition: Profiler.h:48
unsigned int nCalls
Definition: Profiler.h:50