source: issm/trunk-jpl/jenkins/linux64_ross_ad@ 24233

Last change on this file since 24233 was 24233, checked in by jdquinn, 5 years ago

CHG: Configuration changes for AMPION/OFF.

  • Property svn:executable set to *
File size: 2.5 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-GiaIvins \
15 --without-Love \
16 --with-matlab-dir=$MATLAB_PATH \
17 --with-python-dir=/usr \
18 --with-python-numpy-dir=/var/lib/jenkins/.local/lib/python2.7/site-packages/numpy \
19 --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.9 -lgfortran" \
20 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
21 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpi -lmpicxx -lmpifort" \
22 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
23 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
24 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \
25 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \
26 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \
27 --with-gsl-dir=$ISSM_DIR/externalpackages/gsl/install \
28 --with-adolc-dir=$ISSM_DIR/externalpackages/adolc/install \
29 --with-numthreads=4 \
30 --enable-development \
31 --enable-debugging'
32
33#PYTHON and MATLAB testing
34MATLAB_TEST=1
35PYTHON_TEST=1
36
37#-----------------------------------#
38# 3: External packages installation #
39#-----------------------------------#
40
41#List of external pakages to be installed and their installation scripts
42#
43# NOTE: The PETSc libraries are compiled but not used as they conflict with
44# ADOL-C: PETSc is really just being used as an installer for other
45# external packages.
46EXTERNALPACKAGES="autotools install.sh
47 cmake install.sh
48 mpich install-3.2-linux64.sh
49 petsc install-3.7-linux64.sh
50 triangle install-linux64.sh
51 gsl install-linux64.sh
52 adolc install.sh
53 shell2junit install.sh"
54
55#-----------------#
56# 4: test options #
57#-----------------#
58
59#number of cpus used in ISSM installation and compilation (one is usually
60#safer as some packages are very sensitive to parallel compilation)
61NUMCPUS_INSTALL=5
62
63#number of cpus used in the nightly runs.
64NUMCPUS_RUN=4
65
66#Nightly run options. The matlab routine runme.m will be called
67#as follows: runme($MATLAB_NROPTIONS). The options must be understandable
68#by Matlab and runme.m
69#ex: "'id',[101 102 103]"
70MATLAB_NROPTIONS="'benchmark','adolc','id',[3001:3019]"
71PYTHON_NROPTIONS="--benchmark=adolc -i 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019"
Note: See TracBrowser for help on using the repository browser.