Difference between revisions of "Profiling GEOS-Chem"

From Geos-chem
Jump to: navigation, search
(Profiling GEOS-Chem with gprof)
(Profiling GEOS-Chem with gprof)
Line 5: Line 5:
 
== Profiling GEOS-Chem with gprof ==
 
== Profiling GEOS-Chem with gprof ==
  
[https://sourceware.org/binutils/docs/gprof/ The GNU profiler (<tt>gprof</tt>)] is a free, open source software package that you can use to determine which subroutines of GEOS-Chem are taking the most time.  If your computer system has the GNU Compiler Collection already installed (as do most modern Unix/Linux clusters), then <tt>gprof</tt> should also be available for you to use.
+
[https://sourceware.org/binutils/docs/gprof/ The GNU profiler (<tt>gprof</tt>)] is a free, open source software package that you can use to determine which subroutines of GEOS-Chem are taking the most time.  If your computer system has the [https://gcc.gnu.org/ GNU Compiler Collection (GCC)]] already installed (as do most modern Unix/Linux clusters), then <tt>gprof</tt> should also be available for you to use.
  
 
[[GEOS-Chem v11-01]] and higher versions have support for <tt>gprof</tt>.  To profile GEOS-Chem, you must compile with the <tt>GPROF=y</tt> Makefile option, e.g.:
 
[[GEOS-Chem v11-01]] and higher versions have support for <tt>gprof</tt>.  To profile GEOS-Chem, you must compile with the <tt>GPROF=y</tt> Makefile option, e.g.:

Revision as of 17:35, 14 December 2016

Page is under construction.jpg

Overview

Profiling GEOS-Chem with gprof

The GNU profiler (gprof) is a free, open source software package that you can use to determine which subroutines of GEOS-Chem are taking the most time. If your computer system has the GNU Compiler Collection (GCC)] already installed (as do most modern Unix/Linux clusters), then gprof should also be available for you to use.

GEOS-Chem v11-01 and higher versions have support for gprof. To profile GEOS-Chem, you must compile with the GPROF=y Makefile option, e.g.:

make -j4 GPROF=y ...etc. other makefile options ...

This will add the following compiler switches to the compilation sequence:

Compiler Switch to invoke gprof
Intel Fortran compiler (ifort) -p
GNU Fortran compiler (gfortran) -pg
PGI Fortran compiler (pgfortran) -pg

Profiling GEOS-Chem with TAU

Information to be added