PSCF
v1.2
src
util
misc
Memory.cpp
1
/*
2
* Util Package - C++ Utilities for Scientific Computation
3
*
4
* Copyright 2010 - 2017, The Regents of the University of Minnesota
5
* Distributed under the terms of the GNU General Public License.
6
*/
7
8
#include "Memory.h"
9
10
namespace
Util
11
{
12
14
int
Memory::nAllocate_ = 0;
15
17
int
Memory::nDeallocate_ = 0;
18
20
int
Memory::total_ = 0;
21
23
int
Memory::max_ = 0;
24
25
/*
26
* Call this to ensure compilation of this file.
27
*/
28
void
Memory::initStatic
()
29
{ max_ = 0; }
30
31
/*
32
* Return number of calls to allocate.
33
*/
34
int
Memory::nAllocate
()
35
{
return
nAllocate_; }
36
37
/*
38
* Return number of calls to deallocate.
39
*/
40
int
Memory::nDeallocate
()
41
{
return
nDeallocate_; }
42
43
/*
44
* Return total amount of memory allocated thus far.
45
*/
46
int
Memory::total
()
47
{
return
total_; }
48
49
/*
50
* Return maximum amount of allocated memory thus far.
51
*/
52
int
Memory::max
()
53
{
return
max_; }
54
55
#ifdef UTIL_MPI
56
int
Memory::max
(MPI::Intracomm& communicator)
57
{
58
int
maxGlobal;
59
int
maxLocal = max_;
60
communicator.Allreduce(&maxLocal, &maxGlobal, 1, MPI::INT, MPI::MAX);
61
return
maxGlobal;
62
}
63
#endif
64
65
}
Util::Memory::max
static int max()
Return the maximum amount of allocated heap memory thus far.
Definition
Memory.cpp:52
Util::Memory::nAllocate
static int nAllocate()
Return number of times allocate() was called.
Definition
Memory.cpp:34
Util::Memory::initStatic
static void initStatic()
Call this just to guarantee initialization of static memory.
Definition
Memory.cpp:28
Util::Memory::total
static int total()
Return total amount of memory currently allocated.
Definition
Memory.cpp:46
Util::Memory::nDeallocate
static int nDeallocate()
Return number of times deallocate() was called.
Definition
Memory.cpp:40
Util
Utility classes for scientific computation.
Definition
accumulators.mod:1
Generated on Fri Mar 28 2025 00:57:29 for PSCF by
1.12.0