Changeset 23222
- Timestamp:
- 09/05/18 10:11:01 (7 years ago)
- Location:
- issm/trunk-jpl/src/c/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/FemModel.cpp
r23221 r23222 259 259 /*Total times*/ 260 260 _printf0_(" "<<setw(40)<<left<<"Total Core solution elapsed time:"<<setw(7)<<profiler->TotalTime(CORE) << "\n"); 261 /*Individual cores*/ 262 if(profiler->Used(STRESSBALANCECORE)) _printf0_(" "<<setw(40)<<left<<"Stress balance core elapsed time:"<<setw(7)<<profiler->TotalTime(STRESSBALANCECORE) << "\n"); 263 if(profiler->Used(MASSTRANSPORTCORE)) _printf0_(" "<<setw(40)<<left<<"Mass transport core elapsed time:"<<setw(7)<<profiler->TotalTime(MASSTRANSPORTCORE) << "\n"); 261 264 262 /*Linear solver only*/ 265 263 _printf0_(" "<<setw(40)<<left<<"Linear solver elapsed time:"<<setw(7)<<profiler->TotalTime(SOLVER) << " ("<<setprecision(2)<<profiler->TotalTime(SOLVER)/profiler->TotalTime(CORE)*100.<<"%)\n"); … … 859 857 solution_memory=profiler->Memory(CORE); 860 858 861 _printf0_("Core solution elapsed time : " << solution_time << " Seconds\n"); 862 _printf0_("Core solution number of flops : " << solution_flops << " Flops\n"); 863 _printf0_("Core solution memory used : " << solution_memory << " Bytes\n"); 859 _printf0_("\nCore solution profiling\n"); 860 _printf0_(" elapsed time : " << solution_time << " Seconds\n"); 861 _printf0_(" number of flops : " << solution_flops << " Flops\n"); 862 _printf0_(" memory used : " << solution_memory << " Bytes\n"); 863 864 /*Individual cores*/ 865 _printf0_("Individual core profiling\n"); 866 if(profiler->Used(STRESSBALANCECORE)) _printf0_(" "<<setw(40)<<left<<"Stress balance core elapsed time:"<<setw(7)<<setprecision(6)<<profiler->TotalTime(STRESSBALANCECORE) << " sec\n"); 867 if(profiler->Used(MASSTRANSPORTCORE)) _printf0_(" "<<setw(40)<<left<<"Mass transport core elapsed time:"<<setw(7)<<setprecision(6)<<profiler->TotalTime(MASSTRANSPORTCORE) << " sec\n"); 864 868 865 869 /*Add to results: */ … … 869 873 870 874 #ifdef _HAVE_ADOLC_ 871 solution_time=profiler->TotalTime(ADCORE); 872 solution_flops=profiler->TotalFlops(ADCORE); 873 solution_memory=profiler->Memory(ADCORE); 874 875 _printf0_("AD Solution elapsed time : " << solution_time << " Seconds\n"); 876 _printf0_("AD Solution number of flops : " << solution_flops << " Flops\n"); 877 _printf0_("AD Solution memory used : " << solution_memory << " Bytes\n"); 875 solution_time = profiler->TotalTime(ADCORE); 876 solution_flops = profiler->TotalFlops(ADCORE); 877 solution_memory = profiler->Memory(ADCORE); 878 879 _printf0_("AD profiling\n"); 880 _printf0_(" elapsed time : " << solution_time << " Seconds\n"); 881 _printf0_(" number of flops : " << solution_flops << " Flops\n"); 882 _printf0_(" memory used : " << solution_memory << " Bytes\n"); 878 883 #endif 884 _printf0_("\n"); 879 885 880 886 } -
issm/trunk-jpl/src/c/classes/Profiler.h
r23221 r23222 51 51 int TotalTimeModSec(int tag); 52 52 IssmPDouble Memory(int tag); 53 void Start(int tagenum,bool dontmpisync= false);54 void Stop(int tagenum, bool dontmpisync=false);53 void Start(int tagenum,bool dontmpisync=true); /*Do not call MPI barrier by default to save some ms*/ 54 void Stop(int tagenum, bool dontmpisync=true); /*Do not call MPI barrier by default to save some ms*/ 55 55 bool Used(int tagenum); 56 56 };
Note:
See TracChangeset
for help on using the changeset viewer.