MADNESS 0.10.1
memory_measurement.h
Go to the documentation of this file.
1//
2// Created by Florian Bischoff on 2/16/25.
3//
4
5#ifndef MEMORY_MEASUREMENT_H
6#define MEMORY_MEASUREMENT_H
7
8
10#include<madness/mra/mra.h>
11
12namespace madness {
13 /// measure the memory usage of all FunctionImpl objects of all worlds
14
15 /// Assuming FunctionImpl are the largest objects in a calculation
16 /// data is kept as key-value pairs in a map: key=world_id,rank,hostname,NDIM, value=#functions,memory_GB
18 public:
19
20 /// measure the memory usage of all objects of all worlds
21 static void measure_and_print(World& world) {
23 world.gop.fence();
25 world.gop.fence();
26 mm.print_memory_map(world);
27 world.gop.fence();
28 mm.clear_map();
29 }
30
31 private:
32 struct MemKey {
33 unsigned long world_id=1;
34 unsigned long rank=0;
35 std::string hostname="localhost";
36 std::size_t DIM=0;
37 MemKey() = default;
38 MemKey(World& world) : world_id(world.id()), rank(world.rank()) {
40 }
41
42 template<typename T, std::size_t NDIM>
43 MemKey(const FunctionImpl<T,NDIM>& fimpl) : MemKey(fimpl.world) {
44 DIM=NDIM;
45 }
46 MemKey(const MemKey& other) = default;
47
48 template<typename Archive>
49 void serialize(Archive& ar) const {
50 ar & world_id & rank & hostname & DIM;
51 }
52 };
53 friend bool operator<(const MemKey& lhs, const MemKey& other) {
54 if (lhs.hostname!=other.hostname) return lhs.hostname<other.hostname;
55 if (lhs.world_id!=other.world_id) return lhs.world_id<other.world_id;
56 if (lhs.rank!=other.rank) return lhs.rank<other.rank;
57 return lhs.DIM<other.DIM;
58 }
59
60 struct MemInfo {
61 MemInfo() =default;
62 MemInfo(const MemInfo& other) =default;
64 double memory_GB=0.0;
65 template <typename Archive>
66 void serialize(Archive& ar) const {
68 }
69 };
70
71 typedef std::map<MemKey,MemInfo> MemInfoMapT;
72
73 template<typename T, std::size_t NDIM>
75 World& world=*World::world_from_id(obj_id.get_world_id());
76 auto ptr_opt = world.ptr_from_id< WorldObject< FunctionImpl<T,NDIM> > >(obj_id);
77 if (!ptr_opt)
78 MADNESS_EXCEPTION("FunctionImpl: remote operation attempting to use a locally uninitialized object",0);
79 return (dynamic_cast< const FunctionImpl<T,NDIM>*>(*ptr_opt));
80 }
81
82 /// keeps track of the memory usage of all objects of one or many worlds **on this rank**
84 bool debug=false;
85
86 template<typename T, std::size_t NDIM>
88 const double toGB=double(sizeof(T))/(1024*1024*1024); // convert to GB
89 auto sz=f.nCoeff_local();
90 if (debug) print("funcimpl<T,",NDIM,"> id",f.id(), "rank",f.world.rank(),"size in GB",sz*toGB);
91
92 // accumulate the sizes into the world_memory_map
93 world_memory_map[MemKey(f)].num_functions++;
94 world_memory_map[MemKey(f)].memory_GB+=sz*toGB;
95 }
96
97 public:
98
99 /// add all FunctionImpl<T,NDIM> objects of the given world to the memory map
100 /// the memory map is a rank-local object
101 void search_world(World& world) {
102
103 auto all_objects=world.get_object_ids();
104 if (debug and (world.rank()==0)) print("objects in this world ",all_objects);
105
106 for (const auto& obj : all_objects) {
107 if (auto funcimpl=cast_to_funcimpl_ptr<double,1>(obj)) add_memory_to_map(*funcimpl);
108 if (auto funcimpl=cast_to_funcimpl_ptr<double,2>(obj)) add_memory_to_map(*funcimpl);
109 if (auto funcimpl=cast_to_funcimpl_ptr<double,3>(obj)) add_memory_to_map(*funcimpl);
110 if (auto funcimpl=cast_to_funcimpl_ptr<double,4>(obj)) add_memory_to_map(*funcimpl);
111 if (auto funcimpl=cast_to_funcimpl_ptr<double,5>(obj)) add_memory_to_map(*funcimpl);
112 if (auto funcimpl=cast_to_funcimpl_ptr<double,6>(obj)) add_memory_to_map(*funcimpl);
113 }
114 }
115
116 /// add all FunctionImpl<T,NDIM> objects **of all worlds** to the memory map
117 /// the memory map is a rank-local object
119 auto all_worlds=World::get_world_ids(); // all worlds but the default world
120 all_worlds.push_back(World::get_default().id()); // add the default world
121 if (debug) print("searching worlds",all_worlds);
122 for (auto world_id : all_worlds) {
123 if (debug) print("searching world",world_id);
124 World* thisworld=World::world_from_id(world_id);
125 if (World::exists(thisworld)) search_world(*thisworld);
126 }
127 }
128
129 /// reset the memory map
130 void clear_map() {
131 world_memory_map.clear();
132 }
133
134 /// gather all information of the map on rank 0 of the universe
135 void reduce_map(World& universe) {
136 // turn map into vector
137 std::vector<std::pair<MemKey,MemInfo>> memory_vec(world_memory_map.begin(),world_memory_map.end());
138 // gather all data on rank 0
139 memory_vec=universe.gop.concat0(memory_vec);
140 // turn back into map
141 clear_map();
142 for (const auto& [memkey,memval] : memory_vec) {
143 world_memory_map[memkey]=memval;
144 }
145 }
146
147 /// get the hostname of this machine, rank-local
148 static std::string get_hostname() {
149 char buffer[256];
150 gethostname(buffer, 256);
151 return std::string(buffer);
152 }
153
154 /// return a mapping rank to hostname, return value on rank 0 only
155 std::map<long,std::pair<std::string,double>> rank_to_host_and_rss_map(World& universe) {
156 std::vector<std::pair<long,std::pair<std::string,double>>> rank_to_host;
157 // rank-local
158 auto hostname_and_rss=std::pair<std::string,double>(get_hostname(),get_rss_usage_in_GB());
159 rank_to_host.push_back(std::pair<long,std::pair<std::string,double>>(universe.rank(),hostname_and_rss));
160 // gather on rank 0
161 rank_to_host=universe.gop.concat0(rank_to_host);
162 // turn into map
163 std::map<long,std::pair<std::string,double>> map;
164 for (const auto& [rank,hostname] : rank_to_host) {
165 map[rank]=hostname;
166 }
167 return map;
168 }
169
170 /// given the hostname, return number of ranks and total rss on that node
171 std::map<std::string,std::pair<int,double>> host_to_nrank_and_rss_map(World& universe) {
172 auto accumulate_left =[](std::pair<int,double>& a, const std::pair<int,double>& b) {
173 a.first++;
174 a.second+=b.second;
175 };
176 auto rank_to_host=rank_to_host_and_rss_map(universe);
177 std::map<std::string,std::pair<int,double>> host_to_rank;
178 for (const auto& [rank,hostname_and_rss] : rank_to_host) {
179 accumulate_left(host_to_rank[hostname_and_rss.first],std::pair<int,double>(rank,hostname_and_rss.second));
180 }
181 return host_to_rank;
182 }
183
184
185 /// accumulate the memory usage of all objects of all worlds for this rank per host
186
187 /// integrate out world and dim from MemKey, result lives on rank 0 only
188 std::vector<std::pair<std::pair<std::string,long>,double>> memory_per_host_and_rank(World& world) const {
189
190 std::map<std::pair<std::string,long>,double> memory_per_host;
191 for (const auto& [memkey,memval] : world_memory_map) {
192 memory_per_host[{memkey.hostname,memkey.rank}]+=memval.memory_GB;
193 }
194
195 // turn map into vector and sort
196 std::vector<std::pair<std::pair<std::string,long>,double>> memory_per_host_vec(memory_per_host.begin(),memory_per_host.end());
197 std::sort(memory_per_host_vec.begin(),memory_per_host_vec.end(),[](const auto& a, const auto& b){return a.first<b.first;});
198
199 return memory_per_host_vec;
200 }
201
202 /// accumulate the memory usage of all objects of all worlds over all ranks per host
203
204 /// integrate out world, dim and rank, only hostname is left
205 std::vector<std::pair<std::string,double>> memory_per_host_all_ranks(
206 const std::vector<std::pair<std::pair<std::string,long>,double>>& mem_per_host_and_rank) const {
207 std::map<std::string,double> mem_per_host;
208 for (auto& [hostname_and_rank,memory] : mem_per_host_and_rank) {
209 auto hostname=hostname_and_rank.first;
210 mem_per_host[hostname]+=memory;
211 }
212 // turn map into vector
213 std::vector<std::pair<std::string,double>> mem_per_host_vec(mem_per_host.begin(),mem_per_host.end());
214 return mem_per_host_vec;
215 }
216
217 /// return the total memory usage over all hosts
218 double total_memory(World& world) const {
219 double total_memory=0.0;
220 for (const auto& [memkey,memval] : world_memory_map) {
221 total_memory+=memval.memory_GB;
222 }
223 return total_memory;
224 }
225
226 /// @param[in] msg a message to print before the memory map
227 /// @param[in] world used only for clean printing
228 void print_memory_map(World& world, std::string msg="") {
229 reduce_map(world);
230 world.gop.fence();
231 if (world.rank()==0) {
232 print("final memory map:",msg);
233 print("hostname world rank DIM #funcs memory_GB");
234 }
235 constexpr std::size_t bufsize=256;
236 char line[bufsize];
237
238 // print all information
239 world.gop.fence();
240 // turn into vector
241 std::vector<std::pair<MemKey,MemInfo>> memory_vec(world_memory_map.begin(),world_memory_map.end());
242 std::sort(memory_vec.begin(),memory_vec.end(),[](const std::pair<MemKey,MemInfo>& a, const std::pair<MemKey,MemInfo>& b){return a.first<b.first;});
243 for (const auto& [memkey,memval] : memory_vec) {
244 snprintf(line, bufsize, "%20s %12lu %5lu %5lu %5lu %e", memkey.hostname.c_str(), memkey.world_id, memkey.rank, memkey.DIM, memval.num_functions, memval.memory_GB);
245 print(std::string(line));
246 }
247 world.gop.fence();
248
249 // print memory on each host
250 auto mem_per_host_and_rank=memory_per_host_and_rank(world);
251 auto host_to_nrank_and_rss=host_to_nrank_and_rss_map(world);
252 if (world.rank()==0) {
253 print("memory per host");
254 auto info=memory_per_host_all_ranks(mem_per_host_and_rank);
255 print("hostname memory_GB nrank(universe) rss_GB/host");
256 // print("hostname memory_GB");
257 for (const auto& [hostname,memory] : info) {
258 snprintf(line, bufsize, "%20s %e %d %e", hostname.c_str(), memory,
259 host_to_nrank_and_rss[hostname].first, host_to_nrank_and_rss[hostname].second);
260 print(std::string(line));
261 }
262 }
263 if (world.rank()==0) {
264 auto info=memory_per_host_all_ranks(mem_per_host_and_rank);
265 double total_mem=total_memory(world);
266 double total_rss=0.0;
267 for (auto& [hostname,memory] : info) {
268 total_rss+=host_to_nrank_and_rss[hostname].second;
269 }
270 std::string word="all hosts";
271 snprintf(line, bufsize, "%20s %e %d %e",
272 word.c_str(), total_mem, world.size(), total_rss);
273 print(std::string(line));
274 }
275
276 }
277
278 static double get_rss_usage_in_GB() {
279 double kb_to_GB=1.0/(1024*1024);
280 double b_to_GB=kb_to_GB/1024;
281#ifdef __APPLE__
282 struct rusage usage;
283 if (getrusage(RUSAGE_SELF, &usage) == -1) {
284 std::cerr << "Unable to get RSS usage" << std::endl;
285 return -1;
286 }
287 return usage.ru_maxrss*b_to_GB;
288#else
289 std::ifstream statm_file("/proc/self/statm");
290 unsigned long size, resident;
291 if (statm_file.is_open()) {
292 statm_file >> size >> resident;
293 statm_file.close();
294 } else {
295 std::cerr << "Unable to open /proc/self/statm" << std::endl;
296 return -1;
297 }
298 long page_size_kb = sysconf(_SC_PAGE_SIZE) / 1024;
299 return resident * page_size_kb*kb_to_GB;
300#endif
301 }
302
303 };
304}
305
306#endif //MEMORY_MEASUREMENT_H
FunctionImpl holds all Function state to facilitate shallow copy semantics.
Definition funcimpl.h:945
measure the memory usage of all FunctionImpl objects of all worlds
Definition memory_measurement.h:17
static std::string get_hostname()
get the hostname of this machine, rank-local
Definition memory_measurement.h:148
std::map< long, std::pair< std::string, double > > rank_to_host_and_rss_map(World &universe)
return a mapping rank to hostname, return value on rank 0 only
Definition memory_measurement.h:155
const FunctionImpl< T, NDIM > * cast_to_funcimpl_ptr(const uniqueidT obj_id)
Definition memory_measurement.h:74
std::vector< std::pair< std::string, double > > memory_per_host_all_ranks(const std::vector< std::pair< std::pair< std::string, long >, double > > &mem_per_host_and_rank) const
accumulate the memory usage of all objects of all worlds over all ranks per host
Definition memory_measurement.h:205
void print_memory_map(World &world, std::string msg="")
Definition memory_measurement.h:228
std::map< MemKey, MemInfo > MemInfoMapT
Definition memory_measurement.h:71
MemInfoMapT world_memory_map
keeps track of the memory usage of all objects of one or many worlds on this rank
Definition memory_measurement.h:83
void reduce_map(World &universe)
gather all information of the map on rank 0 of the universe
Definition memory_measurement.h:135
friend bool operator<(const MemKey &lhs, const MemKey &other)
Definition memory_measurement.h:53
void clear_map()
reset the memory map
Definition memory_measurement.h:130
void search_world(World &world)
Definition memory_measurement.h:101
void add_memory_to_map(const FunctionImpl< T, NDIM > &f)
Definition memory_measurement.h:87
double total_memory(World &world) const
return the total memory usage over all hosts
Definition memory_measurement.h:218
std::map< std::string, std::pair< int, double > > host_to_nrank_and_rss_map(World &universe)
given the hostname, return number of ranks and total rss on that node
Definition memory_measurement.h:171
static double get_rss_usage_in_GB()
Definition memory_measurement.h:278
static void measure_and_print(World &world)
measure the memory usage of all objects of all worlds
Definition memory_measurement.h:21
void search_all_worlds()
Definition memory_measurement.h:118
bool debug
Definition memory_measurement.h:84
std::vector< std::pair< std::pair< std::string, long >, double > > memory_per_host_and_rank(World &world) const
accumulate the memory usage of all objects of all worlds for this rank per host
Definition memory_measurement.h:188
void fence(bool debug=false)
Synchronizes all processes in communicator AND globally ensures no pending AM or tasks.
Definition worldgop.cc:161
std::vector< T > concat0(const std::vector< T > &v, size_t bufsz=1024 *1024)
Concatenate an STL vector of serializable stuff onto node 0.
Definition worldgop.h:953
Implements most parts of a globally addressable object (via unique ID).
Definition world_object.h:364
A parallel world class.
Definition world.h:132
static World & get_default()
Default World object accessor.
Definition world.h:260
static World * world_from_id(std::uint64_t id)
Convert a World ID to a World pointer.
Definition world.h:492
std::vector< uniqueidT > get_object_ids() const
Returns a vector of all unique IDs in this World.
Definition world.h:468
ProcessID rank() const
Returns the process rank in this World (same as MPI_Comm_rank()).
Definition world.h:320
static std::vector< unsigned long > get_world_ids()
return a vector containing all world ids
Definition world.h:476
ProcessID size() const
Returns the number of processes in this World (same as MPI_Comm_size()).
Definition world.h:330
WorldGopInterface & gop
Global operations.
Definition world.h:207
static bool exists(World *world)
Check if the World exists in the registry.
Definition world.h:249
std::optional< T * > ptr_from_id(uniqueidT id) const
Look up a local pointer from a world-wide unique ID.
Definition world.h:416
Class for unique global IDs.
Definition uniqueid.h:53
unsigned long get_world_id() const
Access the World ID.
Definition uniqueid.h:90
const std::size_t bufsize
Definition derivatives.cc:16
auto T(World &world, response_space &f) -> response_space
Definition global_functions.cc:34
#define MADNESS_EXCEPTION(msg, value)
Macro for throwing a MADNESS exception.
Definition madness_exception.h:119
Main include file for MADNESS and defines Function interface.
Namespace for all elements and tools of MADNESS.
Definition DFParameters.h:10
void print(const T &t, const Ts &... ts)
Print items to std::cout (items separated by spaces) and terminate with a new line.
Definition print.h:225
NDIM & f
Definition mra.h:2481
static const double b
Definition nonlinschro.cc:119
static const double a
Definition nonlinschro.cc:118
Definition memory_measurement.h:60
long num_functions
Definition memory_measurement.h:63
void serialize(Archive &ar) const
Definition memory_measurement.h:66
double memory_GB
Definition memory_measurement.h:64
MemInfo(const MemInfo &other)=default
Definition memory_measurement.h:32
MemKey(World &world)
Definition memory_measurement.h:38
unsigned long rank
Definition memory_measurement.h:34
MemKey(const MemKey &other)=default
std::size_t DIM
Definition memory_measurement.h:36
void serialize(Archive &ar) const
Definition memory_measurement.h:49
MemKey(const FunctionImpl< T, NDIM > &fimpl)
Definition memory_measurement.h:43
unsigned long world_id
Definition memory_measurement.h:33
std::string hostname
Definition memory_measurement.h:35
constexpr std::size_t NDIM
Definition testgconv.cc:54