MADNESS 0.10.1
Classes | Public Member Functions | Static Public Member Functions | Private Types | Private Member Functions | Private Attributes | Friends | List of all members
madness::MemoryMeasurer Class Reference

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, MemInfoMemInfoMapT
 

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)
 

Detailed Description

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

Member Typedef Documentation

◆ MemInfoMapT

Member Function Documentation

◆ add_memory_to_map()

template<typename T , std::size_t NDIM>
void madness::MemoryMeasurer::add_memory_to_map ( const FunctionImpl< T, NDIM > &  f)
inlineprivate

◆ cast_to_funcimpl_ptr()

template<typename T , std::size_t NDIM>
const FunctionImpl< T, NDIM > * madness::MemoryMeasurer::cast_to_funcimpl_ptr ( const uniqueidT  obj_id)
inlineprivate

◆ clear_map()

void madness::MemoryMeasurer::clear_map ( )
inline

reset the memory map

References world_memory_map.

Referenced by measure_and_print(), and reduce_map().

◆ get_hostname()

static std::string madness::MemoryMeasurer::get_hostname ( )
inlinestatic

get the hostname of this machine, rank-local

Referenced by madness::MemoryMeasurer::MemKey::MemKey(), and rank_to_host_and_rss_map().

◆ get_rss_usage_in_GB()

static double madness::MemoryMeasurer::get_rss_usage_in_GB ( )
inlinestatic

◆ host_to_nrank_and_rss_map()

std::map< std::string, std::pair< int, double > > madness::MemoryMeasurer::host_to_nrank_and_rss_map ( World universe)
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().

◆ measure_and_print()

static void madness::MemoryMeasurer::measure_and_print ( World world)
inlinestatic

◆ memory_per_host_all_ranks()

std::vector< std::pair< std::string, double > > madness::MemoryMeasurer::memory_per_host_all_ranks ( const std::vector< std::pair< std::pair< std::string, long >, double > > &  mem_per_host_and_rank) const
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().

◆ memory_per_host_and_rank()

std::vector< std::pair< std::pair< std::string, long >, double > > madness::MemoryMeasurer::memory_per_host_and_rank ( World world) const
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().

◆ print_memory_map()

void madness::MemoryMeasurer::print_memory_map ( World world,
std::string  msg = "" 
)
inline

◆ rank_to_host_and_rss_map()

std::map< long, std::pair< std::string, double > > madness::MemoryMeasurer::rank_to_host_and_rss_map ( World universe)
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().

◆ reduce_map()

void madness::MemoryMeasurer::reduce_map ( World universe)
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().

◆ search_all_worlds()

void madness::MemoryMeasurer::search_all_worlds ( )
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().

◆ search_world()

void madness::MemoryMeasurer::search_world ( World world)
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().

◆ total_memory()

double madness::MemoryMeasurer::total_memory ( World world) const
inline

return the total memory usage over all hosts

References total_memory(), and world_memory_map.

Referenced by print_memory_map(), and total_memory().

Friends And Related Symbol Documentation

◆ operator<

bool operator< ( const MemKey lhs,
const MemKey other 
)
friend

Member Data Documentation

◆ debug

bool madness::MemoryMeasurer::debug =false
private

◆ world_memory_map

MemInfoMapT madness::MemoryMeasurer::world_memory_map
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().


The documentation for this class was generated from the following file: