CoreNEURON
memory_utils.cpp
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2021 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================.
7 */
8 
9 /**
10  * @file memory_utils.cpp
11  * @date 25th Oct 2014
12  *
13  * @brief Provides functionality to report current memory usage
14  * of the simulator using interface provided by malloc.h
15  *
16  * Memory utilisation report is based on the use of mallinfo
17  * interface defined in malloc.h. For 64 bit platform, this
18  * is not portable and hence it will be replaced with new
19  * glibc implementation of malloc_info.
20  *
21  * @see http://man7.org/linux/man-pages/man3/malloc_info.3.html
22  */
23 
24 #include <stdio.h>
25 #include <fstream>
26 #include <unistd.h>
28 #include "coreneuron/mpi/nrnmpi.h"
31 
32 #if defined(__APPLE__) && defined(__MACH__)
33 #include <mach/mach.h>
34 #elif defined HAVE_MALLOC_H
35 #include <malloc.h>
36 #endif
37 
38 #ifdef CORENEURON_ENABLE_GPU
39 #include "cuda_profiler_api.h"
40 #endif
41 
42 namespace coreneuron {
43 double nrn_mallinfo(void) {
44  // -ve mem usage for non-supported platforms
45  double mbs = -1.0;
46 
47 // on os x returns the current resident set size (physical memory in use)
48 #if defined(__APPLE__) && defined(__MACH__)
49  struct mach_task_basic_info info;
50  mach_msg_type_number_t infoCount = MACH_TASK_BASIC_INFO_COUNT;
51  if (task_info(mach_task_self(), MACH_TASK_BASIC_INFO, (task_info_t) &info, &infoCount) !=
52  KERN_SUCCESS)
53  return (size_t) 0L; /* Can't access? */
54  return info.resident_size / (1024.0 * 1024.0);
55 #elif defined(MINGW)
56  mbs = -1;
57 #else
58  std::ifstream file("/proc/self/statm");
59  if (file.is_open()) {
60  unsigned long long int data_size;
61  file >> data_size >> data_size;
62  file.close();
63  mbs = (data_size * sysconf(_SC_PAGESIZE)) / (1024.0 * 1024.0);
64  } else {
65 #if defined HAVE_MALLOC_H
66 // The mallinfo2() function was added in glibc 2.33
67 #if defined(__GLIBC__) && (__GLIBC__ >= 2 && __GLIBC_MINOR__ >= 33)
68  struct mallinfo2 m = mallinfo2();
69 #else
70  struct mallinfo m = mallinfo();
71 #endif
72  mbs = (m.hblkhd + m.uordblks) / (1024.0 * 1024.0);
73 #endif
74  }
75 #endif
76  return mbs;
77 }
78 
79 void report_mem_usage(const char* message, bool all_ranks) {
80  double mem_max, mem_min, mem_avg; // min, max, avg memory
81 
82  // current memory usage on this rank
83  double cur_mem = nrn_mallinfo();
84 
85 /* @todo: avoid three all reduce class */
86 #if NRNMPI
88  mem_avg = nrnmpi_dbl_allreduce(cur_mem, 1) / nrnmpi_numprocs;
89  mem_max = nrnmpi_dbl_allreduce(cur_mem, 2);
90  mem_min = nrnmpi_dbl_allreduce(cur_mem, 3);
91  } else
92 #endif
93  {
94  mem_avg = mem_max = mem_min = cur_mem;
95  }
96 
97  // all ranks prints information if all_ranks is true
98  if (all_ranks) {
99  printf(" Memory (MBs) (Rank : %2d) : %30s : Cur %.4lf, Max %.4lf, Min %.4lf, Avg %.4lf \n",
100  nrnmpi_myid,
101  message,
102  cur_mem,
103  mem_max,
104  mem_min,
105  mem_avg);
106  } else if (nrnmpi_myid == 0) {
107  printf(" Memory (MBs) : %25s : Max %.4lf, Min %.4lf, Avg %.4lf \n",
108  message,
109  mem_max,
110  mem_min,
111  mem_avg);
112 #ifdef CORENEURON_ENABLE_GPU
113  if (corenrn_param.gpu) {
114  size_t free_byte, total_byte;
115  cudaError_t cuda_status = cudaMemGetInfo(&free_byte, &total_byte);
116  if (cudaSuccess != cuda_status) {
117  std::printf("cudaMemGetInfo failed: %s\n", cudaGetErrorString(cuda_status));
118  }
119  constexpr double MiB{1. / (1024. * 1024.)};
120  std::printf(" GPU Memory (MiBs) : Used = %f, Free = %f, Total = %f\n",
121  (total_byte - free_byte) * MiB,
122  free_byte * MiB,
123  total_byte * MiB);
124  }
125 #endif
126  }
127  fflush(stdout);
128 }
129 } // namespace coreneuron
coreneuron::nrnmpi_numprocs
int nrnmpi_numprocs
Definition: nrnmpi_def_cinc.cpp:10
coreneuron::nrnmpi_dbl_allreduce
mpi_function< cnrn_make_integral_constant_t(nrnmpi_dbl_allreduce_impl)> nrnmpi_dbl_allreduce
Definition: nrnmpidec.cpp:44
coreneuron::corenrn_parameters_data::gpu
bool gpu
Enable pthread/openmp.
Definition: corenrn_parameters.hpp:63
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
corenrn_parameters.hpp
nrnmpi.hpp
coreneuron::corenrn_param
corenrn_parameters corenrn_param
Printing method.
Definition: corenrn_parameters.cpp:268
coreneuron::corenrn_parameters_data::mpi_enable
bool mpi_enable
Initialization seed for random number generator (int)
Definition: corenrn_parameters.hpp:59
coreneuron::nrn_mallinfo
double nrn_mallinfo(void)
Returns current memory usage in KBs.
Definition: memory_utils.cpp:43
memory_utils.h
Function prototypes for the functions providing information about simulator memory usage.
coreneuron::nrnmpi_myid
int nrnmpi_myid
Definition: nrnmpi_def_cinc.cpp:11
nrnmpi.h
coreneuron::report_mem_usage
void report_mem_usage(const char *message, bool all_ranks)
Reports current memory usage of the simulator to stdout.
Definition: memory_utils.cpp:79