MADNESS 0.10.1
|
measure the memory usage of all FunctionImpl objects of all worlds More...
#include <memory_measurement.h>
Classes | |
struct | MemInfo |
struct | MemKey |
Public Member Functions | |
void | clear_map () |
reset the memory map | |
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 | |
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 | |
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 | |
void | print_memory_map (World &world, std::string msg="") |
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 | |
void | reduce_map (World &universe) |
gather all information of the map on rank 0 of the universe | |
void | search_all_worlds () |
void | search_world (World &world) |
double | total_memory (World &world) const |
return the total memory usage over all hosts | |
Static Public Member Functions | |
static std::string | get_hostname () |
get the hostname of this machine, rank-local | |
static double | get_rss_usage_in_GB () |
static void | measure_and_print (World &world) |
measure the memory usage of all objects of all worlds | |
Private Types | |
typedef std::map< MemKey, MemInfo > | MemInfoMapT |
Private Member Functions | |
template<typename T , std::size_t NDIM> | |
void | add_memory_to_map (const FunctionImpl< T, NDIM > &f) |
template<typename T , std::size_t NDIM> | |
const FunctionImpl< T, NDIM > * | cast_to_funcimpl_ptr (const uniqueidT obj_id) |
Private Attributes | |
bool | debug =false |
MemInfoMapT | world_memory_map |
keeps track of the memory usage of all objects of one or many worlds on this rank | |
Friends | |
bool | operator< (const MemKey &lhs, const MemKey &other) |
measure the memory usage of all FunctionImpl objects of all worlds
Assuming FunctionImpl are the largest objects in a calculation data is kept as key-value pairs in a map: key=world_id,rank,hostname,NDIM, value=#functions,memory_GB
|
private |
|
inlineprivate |
References debug, madness::f, NDIM, madness::print(), T(), and world_memory_map.
Referenced by search_world().
|
inlineprivate |
|
inline |
reset the memory map
References world_memory_map.
Referenced by measure_and_print(), and reduce_map().
|
inlinestatic |
get the hostname of this machine, rank-local
Referenced by madness::MemoryMeasurer::MemKey::MemKey(), and rank_to_host_and_rss_map().
|
inlinestatic |
Referenced by rank_to_host_and_rss_map().
|
inline |
given the hostname, return number of ranks and total rss on that node
References a, b, and rank_to_host_and_rss_map().
Referenced by print_memory_map().
|
inlinestatic |
measure the memory usage of all objects of all worlds
References clear_map(), madness::WorldGopInterface::fence(), madness::World::gop, print_memory_map(), and search_all_worlds().
Referenced by madness::Nemo::solve(), madness::CC2::solve_mp2_coupled(), and test_size().
|
inline |
accumulate the memory usage of all objects of all worlds over all ranks per host
integrate out world, dim and rank, only hostname is left
Referenced by print_memory_map().
|
inline |
accumulate the memory usage of all objects of all worlds for this rank per host
integrate out world and dim from MemKey, result lives on rank 0 only
References a, b, and world_memory_map.
Referenced by print_memory_map().
|
inline |
[in] | msg | a message to print before the memory map |
[in] | world | used only for clean printing |
References a, b, bufsize, madness::WorldGopInterface::fence(), madness::World::gop, host_to_nrank_and_rss_map(), memory_per_host_all_ranks(), memory_per_host_and_rank(), madness::print(), madness::World::rank(), reduce_map(), madness::World::size(), total_memory(), and world_memory_map.
Referenced by measure_and_print().
|
inline |
return a mapping rank to hostname, return value on rank 0 only
References madness::WorldGopInterface::concat0(), get_hostname(), get_rss_usage_in_GB(), madness::World::gop, and madness::World::rank().
Referenced by host_to_nrank_and_rss_map().
|
inline |
gather all information of the map on rank 0 of the universe
References clear_map(), madness::WorldGopInterface::concat0(), madness::World::gop, and world_memory_map.
Referenced by print_memory_map().
|
inline |
add all FunctionImpl<T,NDIM> objects of all worlds to the memory map the memory map is a rank-local object
References debug, madness::World::exists(), madness::World::get_default(), madness::World::get_world_ids(), madness::print(), search_world(), and madness::World::world_from_id().
Referenced by measure_and_print().
|
inline |
add all FunctionImpl<T,NDIM> objects of the given world to the memory map the memory map is a rank-local object
References add_memory_to_map(), debug, madness::World::get_object_ids(), madness::print(), and madness::World::rank().
Referenced by search_all_worlds().
|
inline |
return the total memory usage over all hosts
References total_memory(), and world_memory_map.
Referenced by print_memory_map(), and total_memory().
|
private |
Referenced by add_memory_to_map(), search_all_worlds(), and search_world().
|
private |
keeps track of the memory usage of all objects of one or many worlds on this rank
Referenced by add_memory_to_map(), clear_map(), memory_per_host_and_rank(), print_memory_map(), reduce_map(), and total_memory().