Hello Marieke
that's an excellent question. PETSc does not support AD because we cannot overload IssmDouble
to active doubles within PETSc and so we cannot use its solvers or data structures (Mat/Vec) explicitly. But we can use some of the solvers and libraries provided by PETSc, typically MUMPS. For example, here is my configure.sh
file for an Ubuntu machine:
./configure \
--prefix=$ISSM_DIR\
--without-kriging \
--without-kml \
--without-Love \
--without-Sealevelchange \
--with-matlab-dir="/usr/local/MATLAB/R2021b" \
--with-mpi-include=$ISSM_DIR/externalpackages/petsc/install/include \
--with-mpi-libflags="-L$ISSM_DIR/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort"\
--with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
--with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \
--with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
--with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \
--with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \
--with-m1qn3-dir="$ISSM_DIR/externalpackages/m1qn3/install" \
--with-codipack-dir="$ISSM_DIR/externalpackages/codipack/install" \
--with-medipack-dir="$ISSM_DIR/externalpackages/medipack/install" \
--with-cxxoptflags="-g -O3 -fPIC -std=c++11 -DCODI_ForcedInlines" \
--with-numthreads=32 \
--enable-tape-alloc \
--enable-development \
--enable-debugging
You can see that I use lots of libraries compiled by PETSc (MPI, MUMPS, BLAS/LAPACK, etc). Once you want to run a model, you need to specify that you want the "ISSM toolkit" (which means that you do not want to use PETSc's Mat and Vec for vectors and matrices) and you can still request to use MUMPS. For example:
md.toolkits.DefaultAnalysis=issmmumpssolver();
md.toolkits.RecoveryAnalysis=issmmumpssolver();
This is a bit technical but hopefully it makes sense. Let me know if you need help!
Mathieu