Changes between Version 6 and Version 7 of hexagon
- Timestamp:
- 09/28/16 02:20:51 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
hexagon
v6 v7 77 77 You can check out ISSM and install m1qn3. This is the only package we will install, the module loaded from your bashrc are taking care of the rest. 78 78 79 Copy the Hexagon configuration script from the configs directory and rename it: 79 Use the following configuration script (adapt to your needs): 80 80 81 {{{ 81 #!sh 82 cp configs/config-linux64-hexagon.sh configure.sh 82 Use the following configuration script (adapt to your needs): 83 84 {{{ 85 #!/bin/sh 86 ./configure \ 87 --prefix=/work/bfl022/issm_install \ 88 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \ 89 --with-petsc-dir=$PETSC_DIR \ 90 --with-metis-dir=$CRAY_TPSL_PREFIX_DIR \ 91 --with-mumps-dir=$CRAY_TPSL_PREFIX_DIR \ 92 --with-mpi-include="$CRAY_MPICH2_DIR/include" \ 93 --with-mpi-libflags="-L$CRAY_MPICH2_DIR/lib -lmpich -lmpl -lfmpich -lmpichcxx -lmpichf90" \ 94 --with-gsl-dir="/work/apps/gsl/1.16-gnu/" \ 95 --enable-development 83 96 }}} 97 84 98 You will also need to change the installation prefix (keep it somewhere on /work to be visible by the compute nodes) 85 99