Changeset 24427


Ignore:
Timestamp:
12/03/19 23:52:51 (5 years ago)
Author:
jdquinn
Message:

CHG: Using system copies of BLAS and LAPACK (works locally)

Location:
issm/trunk-jpl
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/petsc/install-3.7-mac.sh

    r24394 r24427  
    22set -eu
    33
    4 #Some cleanup
    5 rm -rf install petsc-3.7.6 src
     4
     5## Constants
     6#
     7VER="3.7.6"
     8
     9# Download source
     10$ISSM_DIR/scripts/DownloadExternalPackage.sh "https://issm.ess.uci.edu/files/externalpackages/petsc-lite-${VER}.tar.gz" "petsc-${VER}.tar.gz"
     11
     12# Unpack source
     13tar -zxvf  petsc-$VER.tar.gz
     14
     15# Cleanup
     16rm -rf install src
    617mkdir install src
    718
    8 #Download from ISSM server
    9 $ISSM_DIR/scripts/DownloadExternalPackage.sh 'https://issm.ess.uci.edu/files/externalpackages/petsc-lite-3.7.6.tar.gz' 'petsc-3.7.6.tar.gz'
     19# Move source to 'src' directory
     20mv petsc-$VER/* src/
     21rm -rf petsc-$VER
    1022
    11 #Untar and move petsc to install directory
    12 tar -zxvf  petsc-3.7.6.tar.gz
    13 mv petsc-3.7.6/* src/
    14 rm -rf petsc-3.7.6
    15 
    16 #configure
     23# Configure
    1724cd src
    1825./config/configure.py \
    19         --prefix="$ISSM_DIR/externalpackages/petsc/install" \
    20         --with-mpi-dir="$ISSM_DIR/externalpackages/mpich/install" \
    21         --PETSC_DIR="$ISSM_DIR/externalpackages/petsc/src" \
    22         --with-debugging=1 \
     26        --prefix="${ISSM_DIR}/externalpackages/petsc/install" \
     27        --PETSC_DIR="${ISSM_DIR}/externalpackages/petsc/src" \
     28        --with-mpi-dir="${ISSM_DIR}/externalpackages/mpich/install" \
     29        --with-debugging=0 \
    2330        --with-valgrind=0 \
    2431        --with-x=0 \
     
    2734        --download-metis=1 \
    2835        --download-parmetis=1 \
    29         --download-mumps=1 \
    30         --download-scalapack=1
     36        --download-scalapack=1 \
     37        --download-mumps=1
    3138
    32 #Compile and intall
    33 make
    34 make install
     39# Compile and install
     40if [ $# -eq 0 ]; then
     41        make
     42        make install
     43else
     44        make -j $1
     45        make -j $1 install
     46fi
     47
     48# Return to initial directory
     49cd ..
  • issm/trunk-jpl/jenkins/macosx_pine-island

    r24399 r24427  
    77
    88# ISSM CONFIGURATION
    9 ISSM_CONFIG='--prefix=$ISSM_DIR \
     9ISSM_CONFIG='\
     10        --prefix=$ISSM_DIR \
     11        --disable-static \
    1012        --with-matlab-dir=$MATLAB_PATH \
    1113        --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
    1214        --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/mpich/install/lib -lmpi -lmpicxx -lmpifort" \
    13         --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
    1415        --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
    1516        --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \
     
    2122        --with-semic-dir=$ISSM_DIR/externalpackages/semic/install \
    2223        --with-numthreads=4 \
     24        --enable-development \
    2325        --enable-debugging \
    24         --enable-development \
    2526'
    2627
     
    3940        autotools       install.sh
    4041        cmake           install.sh
    41         mpich           install-3.2-mac.sh
     42        mpich           install-3.3.sh
    4243        petsc           install-3.7-mac.sh
    4344        triangle        install-macosx64.sh
     
    5758#               compilation
    5859#
    59 NUMCPUS_INSTALL=8
     60NUMCPUS_INSTALL=4
    6061
    6162# Number of CPUs used in the nightly runs
    62 NUMCPUS_RUN=8
     63NUMCPUS_RUN=
    6364
    6465# Nightly run options
  • issm/trunk-jpl/jenkins/macosx_pine-island_dakota

    r24400 r24427  
    1414        --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
    1515        --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpi -lmpicxx -lmpifort" \
    16         --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
    1716        --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
    1817        --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \
     
    4443        autotools       install.sh
    4544        cmake           install.sh
    46         mpich           install-3.2-mac.sh
     45        mpich           install-3.3.sh
    4746        petsc           install-3.7-mac.sh
    4847        triangle        install-macosx64.sh
  • issm/trunk-jpl/jenkins/macosx_pine-island_dakota_static

    r23453 r24427  
    1717        --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install  \
    1818        --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \
    19         --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
    2019        --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \
    2120        --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
     
    3635
    3736#List of external pakages to be installed and their installation scripts
    38 EXTERNALPACKAGES="autotools    install.sh
    39                                                 cmake        install.sh
    40                                                 chaco        install-macosx64.sh
    41                                                 mpich        install-3.2-macosx64-static.sh
    42                                                 m1qn3        install.sh
    43                                                 petsc        install-3.7-macosx64-static.sh
    44                                                 triangle     install-macosx64.sh
    45                                                 boost        install-1.55-macosx-el_capitan.sh
    46                                                 dakota       install-6.2-macosx64.sh
    47                                                 shell2junit  install.sh"
     37EXTERNALPACKAGES="
     38        autotools       install.sh
     39        cmake           install.sh
     40        chaco           install-macosx64.sh
     41        mpich           install-3.2-macosx64-static.sh
     42        m1qn3           install.sh
     43        petsc           install-3.7-macosx64-static.sh
     44        triangle        install-macosx64.sh
     45        boost           install-1.55-macosx-el_capitan.sh
     46        dakota          install-6.2-macosx64.sh
     47        shell2junit     install.sh
     48"
    4849
    4950#-----------------#
  • issm/trunk-jpl/jenkins/macosx_pine-island_examples

    r24399 r24427  
    1212        --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
    1313        --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/mpich/install/lib -lmpi -lmpicxx -lmpifort" \
    14         --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
    1514        --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
    1615        --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \
     
    4039        autotools       install.sh
    4140        cmake           install.sh
    42         mpich           install-3.2-mac.sh
     41        mpich           install-3.3.sh
    4342        petsc           install-3.7-mac.sh
    4443        triangle        install-macosx64.sh
     
    6564#       compilation
    6665#
    67 NUMCPUS_INSTALL=8
     66NUMCPUS_INSTALL=4
    6867
    6968# Number of CPUs used in the nightly runs
    70 NUMCPUS_RUN=8
     69NUMCPUS_RUN=4
    7170
    7271# Nightly run options
  • issm/trunk-jpl/jenkins/macosx_pine-island_static

    r24394 r24427  
    1616        --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
    1717        --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpi -lpmpi -lmpifort -lmpicxx" \
    18         --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
    1918        --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
    2019        --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \
     
    6867#               compilation
    6968#
    70 NUMCPUS_INSTALL=8
     69NUMCPUS_INSTALL=4
    7170
    7271# Number of CPUs used in the nightly runs
    73 NUMCPUS_RUN=8
     72NUMCPUS_RUN=4
    7473
    7574# Nightly run options
Note: See TracChangeset for help on using the changeset viewer.