47 | | Babylon has both Intel and GNU compilers. Installation should be done with the Intel compilers. You can follow the instructions on the website [http://issm.jpl.nasa.gov/download/unix/]. Choose Petsc v3.15 or later. You should not need Python. |
48 | | |
49 | | Petsc uses GNU compilers by default, so you need to specify to use the Intel compilers. Make sure this is specified in the installation file: |
50 | | |
51 | | {{{ |
52 | | # Configure |
53 | | cd ${PETSC_DIR} |
54 | | ./config/configure.py \ |
55 | | --with-cc=icc --with-cxx=icpc --with-fc=ifort \ |
56 | | --prefix="${PREFIX}" \ |
57 | | --PETSC_DIR="${PETSC_DIR}" \ |
58 | | --with-debugging=0 \ |
59 | | --with-valgrind=0 \ |
60 | | --with-x=0 \ |
61 | | --with-ssl=0 \ |
62 | | --with-pic=1 \ |
63 | | --download-fblaslapack=1 \ |
64 | | --download-mpich=1 \ |
65 | | --download-metis=1 \ |
66 | | --download-parmetis=1 \ |
67 | | --download-scalapack=1 \ |
68 | | --download-mumps=1 \ |
69 | | --download-zlib=1 \ |
70 | | --download-hdf5=1 |
71 | | }}} |
| 47 | Babylon has both Intel and GNU compilers. Installation should be done with the Intel compilers. You can follow the instructions on the website [http://issm.jpl.nasa.gov/download/unix/]. Choose Petsc v3.15 or later (install-3.15-babylon.sh). You should not need Python. |