Ignore:
Timestamp:
11/21/17 16:03:00 (6 years ago)
Author:
yushan
Message:

log files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/branch_openmp/src/node/context.cpp

    r1338 r1342  
    12051205   void CContext::updateCalendar(int step) 
    12061206   { 
    1207       //info(50) << "updateCalendar : before : " << calendar->getCurrentDate() << endl; 
     1207      #pragma omp critical (_output) 
     1208      info(50) << "updateCalendar : before : " << calendar->getCurrentDate() << endl; 
    12081209      calendar->update(step); 
    1209       //info(50) << "updateCalendar : after : " << calendar->getCurrentDate() << endl; 
     1210      #pragma omp critical (_output) 
     1211      info(50) << "updateCalendar : after : " << calendar->getCurrentDate() << endl; 
    12101212#ifdef XIOS_MEMTRACK_LIGHT 
     1213      #pragma omp critical (_output) 
    12111214      info(50) << " Current memory used by XIOS : "<<  MemTrack::getCurrentMemorySize()*1.0/(1024*1024)<<" Mbyte, at timestep "<<step<<" of context "<<this->getId()<<endl ; 
    12121215#endif 
Note: See TracChangeset for help on using the changeset viewer.