]> Creatis software - clitk.git/blob - common/clitkMemoryUsage.cxx
7e0079e80b987ee5acc2ba33eaea3df10dbafa25
[clitk.git] / common / clitkMemoryUsage.cxx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to: 
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17   ======================================================================-====*/
18
19 // clitk include
20 #include "clitkCommon.h"
21 #include "clitkMemoryUsage.h"
22
23 // itk include
24 #include "itkMemoryUsageObserver.h"
25
26 void clitk::PrintMemory(bool verbose, std::string s) 
27 {
28 #if CLITK_MEMORY_INFO == 1
29   if (verbose) {
30     static double previous=0;
31     double mem = GetMemoryUsageInMb();
32     if (s != "") std::cout << "==> " << s << ": ";
33     std::cout << mem << "MB (" << mem-previous << "MB)" << std::endl;
34     previous = mem;
35   }
36 #endif
37 }
38
39 double clitk::GetMemoryUsageInMb() 
40 {
41   itk::MemoryUsageObserver memUsage;
42   return memUsage.GetMemoryUsage() / 1024.;
43 }
44