Changes between Version 4 and Version 5 of pleiadescsh
- Timestamp:
- 12/16/20 16:34:41 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pleiadescsh
v4 v5 7 7 Then, a NAS account has to be created by the new user: 8 8 - go to [https://www.nas.nasa.gov/hecc/portal/accounts] select option 2 ("I want to request and account for myself") 9 - provide the information requested using either GID = s 1690for Eric's group or GID = s1507 for Mathieu's group9 - provide the information requested using either GID = s5692 for Eric's group or GID = s1507 for Mathieu's group 10 10 - the PI will receive an email to approve the request 11 11 - All users must complete NASA-mandatory Basic IT Security Training (This year's training is called "FY2016 CYBERSECURITY AND SENSITIVE UNCLASSIFIED INFORMATION AWARENESS TRAINING"). … … 45 45 46 46 {{{ 47 #!sh 47 #!/bin/csh 48 48 49 ./configure \ 49 50 --prefix=$ISSM_DIR \ … … 65 66 == Installing ISSM on Pleiades with Dakota == 66 67 67 For Dakota to run, you you will still need to make autotools, cmakePETSc, and m1qn3.68 For Dakota to run, you you will still need to make cmake, PETSc, and m1qn3. 68 69 69 70 In addition, will need to build the external package: 70 - boost, install-1.55-pleiades.sh71 71 - dakota, install-6.2-pleiades.sh 72 72 73 Finally, add the following to yourconfiguration script:73 Finally, you will need to make with mpi compilers by using the following configuration script: 74 74 75 75 {{{ 76 --with-boost-dir=$ISSM_DIR/externalpackages/boost/install \ 76 #!/bin/csh 77 78 export F77=mpif77 79 export FC=mpif90 80 81 ./configure \ 82 --prefix=$ISSM_DIR \ 83 --enable-standalone-libraries \ 84 --with-wrappers=no \ 85 --with-petsc-dir="$ISSM_DIR/externalpackages/petsc/install" \ 86 --with-m1qn3-dir="$ISSM_DIR/externalpackages/m1qn3/install" \ 87 --with-boost-dir=/nasa/pkgsrc/sles12/2018Q3/ \ 77 88 --with-dakota-dir=$ISSM_DIR/externalpackages/dakota/install \ 89 --with-gsl-dir=/nasa/pkgsrc/sles12/2018Q3/ \ 90 --with-mpi-include=" " \ 91 --with-mpi-libflags=" -lmpi" \ 92 --with-mkl-libflags="-L/nasa/intel/Compiler/2016.2.181/compilers_and_libraries_2016.2.181/linux/mkl/lib/intel64 -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -limf -lsvml -lirc" \ 93 --with-metis-dir="$ISSM_DIR/externalpackages/petsc/install" \ 94 --with-mumps-dir="$ISSM_DIR/externalpackages/petsc/install" \ 95 --with-scalapack-dir="$ISSM_DIR/externalpackages/petsc/install" \ 96 --with-graphics-lib="/usr/lib64/libX11.so" \ 97 --with-fortran-lib="-L/nasa/intel/Compiler/2016.2.181/compilers_and_libraries_2016.2.181/linux/compiler/lib/intel64/ -lifcore -lifport" \ 98 --with-vendor="intel-pleiades-mpi" \ 99 --enable-development 78 100 }}} 79 101 … … 88 110 cluster.codepath='/u/mmorligh/issm/trunk/bin'; 89 111 cluster.executionpath='/u/mmorligh/issm/trunk/execution/'; 90 cluster.grouplist='s 1690';112 cluster.grouplist='s5692'; 91 113 }}} 92 114