Difference between revisions of "Compiling GCHP"

From Geos-chem
Jump to: navigation, search
(Compilation Tips)
(Compilation Tips)
Line 89: Line 89:
 
  ###################################
 
  ###################################
  
If you did a clean compile of you code and you see this message then you know that GCHP compiled without error. Compiler output, including warnings and error messages, will be stored in a log file called <tt>compile.log</tt>. If you inspect your log file or watch the compile output real-time, you will notice that there are many warnings and error messages. Many of these errors are due to leftover components in MAPL which are no longer used but which still try to compile. As long as the compilation continues, these errors can almost always be ignored and they will have no effect on the operation of GCHP.  
+
If you did a clean compile of your code and you see this message then you know that GCHP compiled without error. Compiler output, including warnings and error messages, will be stored in a log file called <tt>compile.log</tt>. If you inspect your log file or watch the compile output real-time, you will notice that there are many warnings and error messages. Many of these errors are due to leftover components in MAPL which are no longer used but which still try to compile. As long as the compilation continues, these errors can almost always be ignored and they will have no effect on the operation of GCHP.  
  
 
If you are recompiling your source code and see this message then your compilation may or may not have been successful. Why? Because compilation may fail but the previous executable may still be available to be copied, which is the criteria for this message.
 
If you are recompiling your source code and see this message then your compilation may or may not have been successful. Why? Because compilation may fail but the previous executable may still be available to be copied, which is the criteria for this message.

Revision as of 22:43, 19 March 2019

Previous | Next | User Manual Home | GCHP Home

  1. Hardware and Software Requirements
  2. Downloading Source Code and Data Directories
  3. Obtaining a Run Directory
  4. Setting Up the GCHP Environment
  5. Compiling
  6. Running GCHP: Basics
  7. Running GCHP: Configuration
  8. Output Data
  9. Developing GCHP
  10. Run Configuration Files


Overview

This section provides instructions on how to clean and compile GCHP. There are several options for cleaning and compiling which allow clean and compilation of subsets of modules, thereby minimizing recompilation to only modules you have modified.

You are ready to compile GCHP after you have obtained the GCHP source code, set up your run directory, and set your environment. First time compilation can take a while (30 minutes or more) because it requires building large modules, including ESMF, MAPL, FV3 dycore advection, and GEOS-Chem. MAPL, which is short for Modeling, Analysis and Prediction Layer, is built on ESMF, aka the Earth System Modeling Framework. Both systems are highly flexible but highly complex, with significant compilation times. Fortunately, MAPL and ESMF do not need to be recompiled unless parts of their code have been modified which is usually not necessary. Subsequent compile times will therefore be significantly shorter, on the same order of magnitude as compiling GEOS-Chem Classic.

If you run into problems compiling GCHP and cannot figure out why, please create an issue on the GCHP issue tracker located at https://github.com/geoschem/gchp/issues.

Run Directory Makefile

The GCHP run directory Makefile contains several options for cleaning and compiling source code, as well as utility options you might find useful. Options are printed out by typing the following at the command line:

make help

We encourage you to do this and browse the options available. Several options are particularly useful for cleaning up files in your run directory and displaying the status of your source code.

Initial Compile

To compile GCHP from scratch, navigate to your run directory and check that your gchp.env symbolic link is pointing to the environment file you wish to use. Next, type the following within the run directory:

make clean
make build

These commands will execute ./build.sh clean and ./build.sh build. All build information is sent to both the terminal window and to a log file called compile.log. Git information for both source code repositories at compile time are recorded in a separate file called lastbuild for future reference. Upon successful compilation, the following empty files are created in your GCHP source code directories:

  • GCHP/ESMF/esmf.install
  • GCHP/Shared/mapl.install
  • GCHP/FVdycoreCubed_GridComp/fvdycore.install

These files indicate successful compilation per module and their presence prompts the GCHP source code Makefile to skip compiling each component during future builds unless you explicitly clean the source code. If you are ever uncertain on whether your ESMF, MAPL, and FV3 dycore were previously built, check if these files exist.

Recompile

For subsequent GCHP compilations you have several options. You can remind yourself of all options by typing the following at the prompt from within your run directory:

make help

For compilation the make targets you are interested in are clean, clean_mapl, clean_gc, build, build_mapl, build_gc, and build_gc_debug. Here is a brief summary of these options.

Clean/compile ALL source code, including ESMF, MAPL, and FV3:

make clean
make build

Clean/compile all source code except ESMF:

make clean_mapl
make build_mapl

Clean/compile all source code except ESMF, MAPL, and FV3:

make clean_gc
make build_gc

Same as above but compile GEOS-Chem with debug flags turned on (note that this will slow down the model)

make build_gc_debug

A typical workflow would be:

  1. create a run directory
  2. compile from scratch (make clean; make build)
  3. edit GEOS-Chem code in GeosCore
  4. recompile with debug flags on (make build_gc_debug)
  5. do a short test run to see if any of the debug flags trigger a problem
  6. recompile with debug flags off (make build_gc) to speed up the model

The last few steps would be repeated as needed. Since this workflow is the most common, the default make target, meaning the target used when none is specified, is set to build_gc. Therefore to rebuild GEOS-Chem after changing GEOS-Chem files or any high-level files in the GCHP directory you can simply type this:

make

Note that if you change your underlying libraries (configured in your environment file) you MUST do a full source code clean before rebuilding. Otherwise you will likely encounter a segmentation fault when running the model. For this reason it is recommended that you create a new run directory for each new environment you want to run in, e.g. if you want to test with both Intel and GNU fortran compilers.

Also note that these build targets were added in GCHP version 12.2.0. If you are using an earlier version type make help to view your make options.

Compilation Tips

If a GCHP executable exists in the GEOS-Chem bin/ folder to be copied to your run directory, then you should see the following message at the end of compilation:

###################################
### GCHP compiled successfully! ###
###################################

If you did a clean compile of your code and you see this message then you know that GCHP compiled without error. Compiler output, including warnings and error messages, will be stored in a log file called compile.log. If you inspect your log file or watch the compile output real-time, you will notice that there are many warnings and error messages. Many of these errors are due to leftover components in MAPL which are no longer used but which still try to compile. As long as the compilation continues, these errors can almost always be ignored and they will have no effect on the operation of GCHP.

If you are recompiling your source code and see this message then your compilation may or may not have been successful. Why? Because compilation may fail but the previous executable may still be available to be copied, which is the criteria for this message.

The general rule-of-thumb is if you clean compile or if you build using 'make build_gc' and therefore skip building MAPL, then you can trust the 'GCHP compiled successfully' message. However, if you recompile using 'make build_mapl' without cleaning first, then you will need to dig a little deeper to ensure a successful rebuild. The best way to do this is to do keyword search for 'making install' in compile.log and scan the few lines directly above all instances of it. If there was a problem with MAPL you will spot it immediately in one of these areas. If you plan on developing within MAPL please make sure you fully understand this approach to debugging MAPL since it will save you a lot of time and frustration.

Why is this necessary? It is because MAPL will continue to compile even if a compile error occurs. MAPL compilation involves compiling a series of components, many of them dependent on components that came before, and compilation rules are relaxed to allow minor problems. One component may fail compilation but the compilation will not crash until the built file is needed later on in the build sequence. It is therefore necessary to search your log file for errors high above the final error in the event of compile failure. The log file will be long so this should be done by keyword search.

While this has already been stated, we will state it again since it is so useful. Here are strategies that typically hone in immediately on the original MAPL error:

  1. Search for string "making install" look at the lines immediately above all results of your keyword search.
  2. A second and more tedious option is to search for string "error". Ignore results where error is in a filename or in a source code string that triggered a warning.

Here are some tips for troubleshooting this sort of problem.

  1. Check your compilation log file for errors using the guidelines presented above.
  2. If in doubt, check the source code directory to see the file times. If the binary for the file you updated is older than the other binaries then it encountered a compile error in your update.

Advanced Compilation Topics

The Makefile in the run directory invokes a bash shell script called build.sh that includes changing into the source code directory and invoking source code Makefiles. At its core, building GCHP simply requires the inclusion of additional target HPC=yes if cleaning and hpc if compiling when invoking make in the GEOS-Chem repository. Cleaning GCHP also requires changing into the GCHP directory explicitly to clean ESMF, MAPL, and FV3 dycore.

If you are interested in seeing the core make commands used for all options provided in the run directory Makefile, see the commands defined in build.sh. You can then trace the build sequence by looking at the Makefiles in the GEOS-Chem and GCHP repositories. Note that calling make always invokes the Makefile in the directory you are in and changing into the GEOS-Chem and GCHP source code directories occurs within build.sh. Also note that the GRID=4x5 argument has no effect on the resolution at which the model runs since GCHP functions on the cubed-sphere grid. However, passing GRID is required so that components of GEOS-Chem Classic are functional.

If you are interested in the build sequence for MAPL, look at the various *.mk files ESMA_base.mk, ESMA_arch.mk, and GMAO_base.mk in GCHP/Shared/Config as well as GNUMakefile within GCHP/Shared and all its subdirectories. Also see GIGC.mk in the highest level of the GCHP repository for the include dependencies between GCHP modules.

Currently GCHP does not compile with cmake but work is in progress to make this possible in the future.


Previous | Next | User Manual Home | GCHP Home