By default PORD ordering is used. For large matrix systems, Scotch, METIS, parMETIS ordering can be used for possible performance enhancements.
The default precision is float64 and float32.
option(BUILD_SINGLE "Build single precision real" ON)
option(BUILD_DOUBLE "Build double precision real" ON)
option(BUILD_COMPLEX "Build single precision complex")
option(BUILD_COMPLEX16 "Build double precision complex")
For systems where MPI, BLACS and SCALAPACK are not available, or where non-parallel execution is suitable, the default parallel can be disabled at CMake configure time by option:
cmake -Dparallel=false
The MUMPS version defaults to a recent release. For reproducibility, benchmarking and other purposes, one may select the version of MUMPS to build like:
cmake -B build -DMUMPS_UPSTREAM_VERSION=5.6.2
The MUMPS_UPSTREAM_VERSION works for MUMPS versions in cmake/libraries.json.
Matlab / GNU Octave MEX interface may be built (one or the other) by EITHER:
-Dmatlab=on
-Doctave=on
These require -Dparallel=off
.
These Matlab scripts seems to have been developed ~ 2006 and may not fully work anymore.
Ask the MUMPS Users List if you need such scripts.
We present them mainly as an example of compiling MEX libraries for Octave and Matlab with CMake.
OpenMP can make MUMPS slower in certain situations. Try with and without OpenMP to see which is faster for your situation. Default is OpenMP OFF.
cmake -Dopenmp=true