Install PFLOTRAN on CHPC
See this documentation for installation on Linux machine.
Setup environment
Login to CHPC and load the following modules.
module load gcc/11.2.0 openmpi/4.1.4 cmake/3.26.0
Install PETSc
Download Petsc from Bitbucket, and save it into directory petsc_v3.20.2
, and checkout the latest version 3.20.2
.
git clone https://gitlab.com/petsc/petsc.git petsc_v3.20.2
cd petsc_v3.20.2
git checkout v3.20.2
Set current dir as PETSC_DIR
, define --PETSC_ARCH
to any name, and a subdir with the same name will be created under the PETSC_DIR
(eg.petsc_v3.20.2/notchpeak-gcc-8.5.0
)
export PETSC_DIR=$PWD
export PETSC_ARCH=notchpeak-gcc-8.5.0
Configure PETSc
- Use the recommended configuration. This will install a Fortran compiler, MPI, HDF5, and BLAS/LAPACK.
./configure --COPTFLAGS='-O3' --CXXOPTFLAGS='-O3' --FOPTFLAGS='-O3 -Wno-unused-function -fallow-argument-mismatch' --with-debugging=no --download-mpich=yes --download-hdf5=yes --download-hdf5-fortran-bindings=yes --download-fblaslapack=yes --download-metis=yes --download-parmetis=yes
- After configure, you will see something similar to the following message:
xxx=========================================================================xxx
# Configure stage complete. Now build PETSc libraries with (gnumake build):
make PETSC_DIR=/uufs/chpc.utah.edu/common/home/shuai-group1/pflotran/petsc_v3.21.4 PETSC_ARCH=notchpeak-gcc-8.5.0 all
xxx=========================================================================xxx
- Follow the prompt to build PETSc:
make PETSC_DIR=/uufs/chpc.utah.edu/common/home/shuai-group1/pflotran/petsc_v3.21.4 PETSC_ARCH=notchpeak-gcc-8.5.0 all
Download and compile PFLOTRAN
git clone https://bitbucket.org/pflotran/pflotran pflotran_v6.0
cd pflotran_v6.0
# optional. To checkout a specific version
# cd pflotran && git checkout maint/v5.0
git checkout v6.0
cd src/pflotran
make -j4 pflotran # use parallel thread to compile? You can also try -j8, -j16... if more cores are available
After compilation is complete, a new file named pflotran*
executable is generated at current directory. You can also move this executable to another directory, e.g. ` ./bin/pflotran*, then you can export this directory to
PATH`.
mkdir bin && cd bin && cp ../pflotran .
Fast compilation (use with caution)
Caution! This works if only a small change is made because the compilation will not rebuild all the dependencies.
make pflotran fast=1
Regression test
Do a regression test to see if pflotran if working. First, request an interactive node to run the regression test.
salloc -N 1 -C cpu -q interactive -t 01:00:00 -L SCRATCH -A m1800
srun -n 1 pflotran -pflotranin $PFLOTRAN_DIR/regression_tests/default/543/543_flow.in # need to use one core to run this example
Within seconds, the test model should finish, and the installation processes are done! 🎉
Create modulefile
Use module is a great way to organize compiled codes. Here is a sample that I used for PFLOTRAN on NERSC.
#%Module1.0#####################################################################
##
## modules modulefile
##
proc ModulesHelp { } {
global mpi_bin
puts stderr "\tPFLOTRAN pflotran/5.0 repository, opt build"
puts stderr ""
}
module-whatis "PFLOTRAN pflotran/5.0 repository, opt build"
# #############################################################################
module load cpu
setenv PFLOTRAN_DIR /PATH/TO/PFLOTRAN_DIR
setenv PETSC_DIR /PATH/TO/PETSC_DIR
setenv PETSC_ARCH perl-c-opt
prepend-path PATH $env(PFLOTRAN_DIR)/src/pflotran/bin
prepend-path PATH $env(PETSC_DIR)/$env(PETSC_ARCH)/bin
prepend-path PYTHONPATH $env(PFLOTRAN_DIR)/src/python
Update PFLOTRAN
- make sure
PETSC_DIR
andPETSC_ARCH
are in your environment
export PETSC_DIR=$PWD
export PETSC_ARCH=perl-c-opt
- Pull the changes from remote repo
git pull
- Recompile PFLOTRAN
cd pflotran/src/pflotran
make -j4 pflotran
# make pflotran fast=1
Common issues
-
module: command not found
. This happened on an interactive node withzsh
shell.- To fix this, run
source $LMOD_PKG/init/zsh
prior to running anymodule
command.
- To fix this, run
Enjoy Reading This Article?
Here are some more articles you might like to read next: