Building and compiling JEDI¶
As described in detail elsewhere, the procedure for building and compiling JEDI rests heavily on the software tools CMake
and ecbuild
, which make your life much easier. A typical workflow proceeds in the following steps, which are described in more detail in the sections that follow:
Clone the desired JEDI bundle
Optionally edit the
CMakeLists.txt
file in the bundle to choose the code branches you want to work withcd
to the build directory and runecbuild
to generate the Makefiles and other infrastructureRun
make update
to pull the latest, up-to-date code from GitHub (optional) andmake
to compile the codeRun
ctest
to verify that the bundle is working correctly
In terms of the actual commands you would enter, these steps will look something like this:
cd <src-directory>
git clone https://github.com/JCSDA/fv3-bundle.git
cd <build-directory>
ecbuild <src-directory>/fv3-bundle
make update
make -j4
ctest
In this document we describe Steps 1 through 4, including the various options you have available to you at each step. For a description of Step 5, see our page on JEDI unit testing.
You will probably only need to do Step 1 once. However, if you are a developer who is making changes to one or more JEDI repositories, you will likely find it useful to execute Steps 2 through 5 multiple times, with progressively increasing frequency. For example, if you are working with a single repository, you may only need to do Step 2 once in order to tell ecbuild to compile your local branch. And, you’ll only need to run ecbuild
(Step 3) occasionally, when you make changes that affect the directory tree or compilation (for example, adding a file that was not there previously or substantially altering the dependencies). By comparison, you will likely execute Steps 4 and 5 frequently as you proceed to make changes and test them.
Precursor: System Configuration¶
Before jumping into the actual building of JEDI, we highly recommend that you read this section. This information will let you avoid the need to enter your GitHub password many times during the JEDI build process, which can be annoying to say the least. And, it will allow you to avoid errors when using a bundle that requires multiple MPI threads.
All JEDI repositories are stored and distributed by means of GitHub. If you have used git
before, then you probably already have a .gitconfig
configuration file in your home directory. If you have not already done so at some point in the past, you can create a git configuration file by specifying your GitHub username and email as follows:
git config --global user.name <username-for-github>
git config --global user.email <email-used-for-github>
This is a recommended action for any user of GitHub since it governs how you access GitHub with git
. However, there is another action that you may not have set up previously but that will be immensely useful to all JEDI users and developers: tell GitHub to cache your GitHub credentials:
git config --global credential.helper 'cache --timeout=3600'
This tells GitHub to keep your GitHub login information for an hour, i.e. 3600 seconds (feel free to increase this time if you wish). If you don’t do this, you may regret it - you’ll have to enter your GitHub password repeatedly throughout the build process as ecbuild proceeds to clone multiple GitHub repositories.
The statement above should be sufficient on most systems. However, on some systems (particularly HPC systems with stringent security protocols), it may be necessary to explicitly give git permission to store your GitHub password unencrypted on disk as follows:
git config --global --add credential.helper 'store'
As for all your files, your password will still be protected by the security protocols necessary to simply access the system as a whole and your own filesystem in particular. So, this should still be pretty secure on HPC systems but you might want to use it with caution in less secure environments such as laptops or desktops. For other alternatives, see the documentation on git credentials.
Before building the jedi code, you should also make sure that git is configured to interpret files that are stored on git-lfs:
git lfs install
This only needs to be done once, and it is required even if you are running in a container.
Another thing to keep in mind is that many JEDI tests likely require more MPI tasks to run than the number of processor cores on your system. For example, may laptops have two or four processor cores but the minimum number of MPI tasks needed to run fv3-bundle is 6. That’s no problem - you just have to tell Openmpi that it is ok to run more than one MPI task on each core. To do this, run these commands:
mkdir -p ~/.openmpi
echo "rmaps_base_oversubscribe = 1" > ~/.openmpi/mca-params.conf
Step 1: Clone the Desired JEDI Bundle¶
JEDI applications are organized into high-level bundles that conveniently gather together all the git repositories necessary for JEDI applications to run. Often a bundle is associated with a particular model, such as FV3 or MPAS.
So, to start your JEDI adventure, the first step is to create a directory as a home for your bundle (or bundles–plural–if you’re ambitious!). Here we will use ~/jedi/src
but feel free to call it whatever you wish. Then clone the GitHub repository that contains the bundle you want, as demonstrated here:
cd ~/jedi
mkdir src
cd src
git clone https://github.com/JCSDA/fv3-bundle.git
Step 2: Choose your Repos¶
As executed above, Step 1 will create a directory called ~/jedi/src/fv3-bundle
. cd
to this directory and have a look (modify this as needed if you used a different path or a different bundle). There’s not much there. There is a README
file that you might want to consult for specific information on how to work with this bundle. But in this Step we’ll focus on the CMakeLists.txt
file. This contains a list of repositories that the application needs to run. In the case of fv3-bundle that list looks something like this:
ecbuild_bundle( PROJECT fckit GIT "https://github.com/JCSDA/fckit.git" BRANCH release-stable UPDATE )
ecbuild_bundle( PROJECT atlas GIT "https://github.com/JCSDA/atlas.git" BRANCH release-stable UPDATE )
ecbuild_bundle( PROJECT oops GIT "https://github.com/JCSDA/oops.git" BRANCH develop UPDATE )
ecbuild_bundle( PROJECT gsw GIT "https://github.com/JCSDA/GSW-Fortran.git" BRANCH develop UPDATE )
ecbuild_bundle( PROJECT crtm GIT "https://github.com/JCSDA/crtm.git" BRANCH develop UPDATE )
ecbuild_bundle( PROJECT ioda GIT "https://github.com/JCSDA/ioda.git" BRANCH develop UPDATE )
ecbuild_bundle( PROJECT ufo GIT "https://github.com/JCSDA/ufo.git" BRANCH develop UPDATE )
The lines shown above tell ecbuild which specific branches to retrieve from each GitHub repository. Modify these accordingly if you wish to use different branches. When you then run ecbuild
as described in Step 3 below, it will first check to see if these repositories already exist on your system, within the directory of the bundle you are building. If not, it will clone them from GitHub. Then ecbuild
will proceed to checkout the branch specified by the BRANCH
argument, fetching it from GitHub if necessary.
If the specified branch of the repository already exists on your system, then ecbuild
will not fetch it from GitHub. If you want to make sure that you are using the latest and greatest version of the branch, then there are two things you need to do.
First, you need to include the (optional) UPDATE
argument in the ecbuild_bundle()
call as shown in each of the lines above. Second, you need to explicitly initiate the update by running make update
as described in Step 4.
This will tell ecbuild to do a fresh pull of each of the branches that include the UPDATE
argument. Note that make update
will not work if there is no Makefile in the build directory. So, this command will only work after you have already run ecbuild
at least once.
If you are a developer, you will, by definition, be modifying the code. And, if you are a legitimate JEDI Master, you will be following the git flow workflow. So, you will have created a feature (or bugfix) branch on your local computer where you are implementing your changes.
For illustration, let’s say we created a feature branch of ufo called feature/newstuff
, which exists on your local system. Now we want to tell ecbuild
to use this branch to compile the bundle instead of some other remote branch on GitHub. To achieve this, we would change the appropriate line in the CMakeLists.txt file to point to the correct branch and we would remove the UPDATE
argument:
ecbuild_bundle( PROJECT ufo GIT "~/jedi/src/fv3-bundle/ufo" BRANCH feature/newstuff )
This may be all you need to know about ecbuild_bundle()
but other options are available. For example, if you would like to fetch a particular release of a remote GitHub repository you can do this:
ecbuild_bundle( PROJECT eckit GIT "https://github.com/ECMWF/eckit.git" TAG 0.18.5 )
For further information see the cmake/ecbuild_bundle.cmake file in ECMWF’s ecbuild repository.
Step 3: Run ecbuild (from the build directory)¶
After you have chosen which repositories to build, the next step is to create a build directory (if needed):
cd ~/jedi
mkdir build
Then, from that build directory, run ecbuild
, specifying the path to the directory that contains the source code for the bundle you wish to build:
cd ~/jedi/build
ecbuild ../src/fv3-bundle
Here we have used ~/jedi/src
as our source directory and ~jedi/build
as our build directory. Feel free to change this as you wish, but just make sure that your source and build directories are different.
This should work for most bundles but if it doesn’t then check in the bundle source directory to see if there are other build scripts you may need to run. This is particularly true if you are running outside of the JEDI CharlieCloud and Singularity containers. These build scripts are customized for each bundle and instructions on how to use them can be found in the README
file in the top level of the bundle repository.
Warning
Some bundles may require you to run a build script prior to or in lieu of running ecbuild, particularly if you are running outside of the CharlieCloud and Singularity containers. Check the README file in the top directory of the bundle repository to see if this is necessary, particularly if you encounter problems running ecbuild, cmake, or ctest.
After you enter the ecbuild command, remember to practice patience, dear padawan. The build process may take several minutes.
As described here, ecbuild is really just a sophisticated (and immensely useful!) interface to CMake. So, if there are any CMake options or arguments you wish to invoke, you can pass them to ecbuild and it will kindly pass them on to CMake. The general calling syntax is:
ecbuild [ecbuild-options] [--] [cmake-options] <src-directory>
Where src-directory
is the path to the source code of the bundle you wish to build. The most useful ecbuild option is debug:
ecbuild --build=debug ../src/fv3-bundle
This will invoke the debug flags on the C++ and Fortran compilers and it will also generate other output that may help you track down errors when you run applications and/or tests. You can also specify which compilers you want and you can even add compiler options. For example:
ecbuild -- -DCMAKE_CXX_COMPILER=/usr/bin/g++ -DCMAKE_CXX_FLAGS="-Wfloat-equal -Wcast-align" ../src/fv3-bundle
Let’s say that you’re working on an HPC system where you do not have the privileges to install Singularity. If this is the case then we recommend that your first check to see if there are JEDI modules installed on your system. If your system is listed on this modules documentation page then you can simply load the JEDI module as described there and you will have access to ecbuild, eckit, and other JEDI infrastructure.
If your system is not one that is supported by the JEDI team, then a second option is to install CharlieCloud in your home directory and run JEDI from within the Charliecloud container.
A third option is for you to install eckit on your system manually (not recommended). If you do this, then you may have to tell ecbuild where to find it with this command line option:
ecbuild -- -DECKIT_PATH=<path-to-eckit> ../src/fv3-bundle
For more information, enter ecbuild --help
and see our JEDI page on ecbuild and cmake.
Step 4: Run make (from the build directory)¶
After running ecbuild, the next step is to make sure the code is up to date. You can do this by running make update
from the build directory as described in Step 2:
make update
Warning
Running make update
will initiate a git pull
operation for each of the repositories that include the GIT
and UPDATE
arguments in the call to ecbuild_bundle()
in CMakeLists.txt
. So, if you have modified these repositories on your local system, there may be merge conflicts that you have to resolve before proceeding.
Now, at long last, you are ready to compile the code. From the build directory, just type
make -j4
The -j4
flag tells make to use four parallel processes. Since many desktops, laptops, and of course HPC systems come with 4 or more compute cores, this can greatly speed up the compile time. Feel free to increase this number if appropriate for your hardware.
The most useful option you’re likely to want for make
other than -j
is the verbose option, which will tell you the actual commands that are being executed in glorious detail:
make VERBOSE=1 -j4
As usual, to see a list of other options, enter make --help
.
Again, the compile can take some time (10 minutes or more) so be patient. Then, when it finishes, the next step is to run ctest.
If the parallel compile fails, the true error may not be in the last line of the output because all processes are writing output simultaneously and some may still continue while another fails. So, in that case, it can be useful to re-run make
with only a single process. Omitting the -j
option is the same as including -j1
:
make VERBOSE=1