source: issm/branches/trunk-larour-NatGeoScience2016/jenkins/linux64_caladan_ampi@ 21759

Last change on this file since 21759 was 21759, checked in by Eric.Larour, 8 years ago

CHG: merged branch back to trunk-jpl 21754.

  • Property svn:executable set to *
File size: 2.3 KB
Line 
1
2#-------------------------------#
3# 1: ISSM general configuration #
4#-------------------------------#
5
6#MATLAB path
7MATLAB_PATH="/usr/local/MATLAB/R2015a"
8
9#ISSM CONFIGURATION
10ISSM_CONFIG='--prefix=$ISSM_DIR\
11 --disable-static \
12 --without-kriging \
13 --without-kml \
14 --without-Gia \
15 --with-gsl-dir=$ISSM_DIR/externalpackages/gsl/install \
16 --with-adolc-dir=$ISSM_DIR/externalpackages/adolc/install \
17 --with-ampi-dir=$ISSM_DIR/externalpackages/adjoinablempi/install \
18 --with-matlab-dir=$MATLAB_PATH \
19 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
20 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
21 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpi" \
22 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install/ \
23 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
24 --with-numthreads=4 \
25 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install/ \
26 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \
27 --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.9/ -lgfortran" \
28 --enable-development '
29
30#PYTHON and MATLAB testing
31MATLAB_TEST=1
32PYTHON_TEST=0
33
34#-----------------------------------#
35# 3: External packages installation #
36#-----------------------------------#
37
38#List of external pakages to be installed and their installation scripts
39EXTERNALPACKAGES="autotools install.sh
40 mpich install-3.2-linux64.sh
41 petsc install-3.7-linux64.sh
42 metis install-5.0.1-linux64.sh
43 triangle install-linux64.sh
44 gsl install-linux64.sh
45 adjoinablempi install.sh
46 adolc install-withampi.sh
47 shell2junit install.sh"
48
49#-----------------#
50# 4: test options #
51#-----------------#
52
53#number of cpus used in ISSM installation and compilation (one is usually
54#safer as some packages are very sensitive to parallel compilation)
55NUMCPUS_INSTALL=2
56
57#number of cpus used in the nightly runs.
58NUMCPUS_RUN=1
59
60#Nightly run options. The matlab routine runme.m will be called
61#as follows: runme($MATLAB_NROPTIONS). The options must be understandable
62#by Matlab and runme.m
63#ex: "'id',[101 102 103]"
64MATLAB_NROPTIONS="'benchmark','adolc','id',[3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, 3010, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3119]"
65PYTHON_NROPTIONS=""
Note: See TracBrowser for help on using the repository browser.