Changeset 25876


Ignore:
Timestamp:
12/16/20 16:26:32 (4 years ago)
Author:
schlegel
Message:

CHG: install scripts for pfe dakota with newest pfe configuration

Location:
issm/trunk-jpl
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/dakota/configs/6.2/BuildDakotaCustom.cmake.pfe.patch

    r19695 r25876  
    1616---
    1717> set(BOOST_ROOT
    18 >     "/nasa/boost/1.50.0"
     18>     "/nasa/pkgsrc/sles12/2018Q3/"
    1919>     CACHE PATH "Use non-standard Boost install" FORCE)
    2020> set( Boost_NO_SYSTEM_PATHS TRUE
  • issm/trunk-jpl/externalpackages/dakota/configs/6.2/CMakeLists.txt.pfe.patch

    r21687 r25876  
    33---
    44> # TODO: Can't this be integrated into the following logic?
    5 > set(BLAS_LIBS "-L/nasa/intel/Compiler/2016.2.181/compilers_and_libraries_2016.2.181/linux/mkl/lib/intel64/ -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -L/usr/lib64/ -lpthread -lm")
    6 > set(LAPACK_LIBS "-L/nasa/intel/Compiler/2016.2.181/compilers_and_libraries_2016.2.181/linux/mkl/lib/intel64/ -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -L/usr/lib64/ -lpthread -lm")
     5> set(BLAS_LIBS "-L/nasa/intel/Compiler/2016.2.181/compilers_and_libraries_2016.2.181/linux/mkl/lib/intel64/ -lmkl_intel_lp64 -lmkl_sequential -lmkl_core")
     6> set(LAPACK_LIBS "-L/nasa/intel/Compiler/2016.2.181/compilers_and_libraries_2016.2.181/linux/mkl/lib/intel64/ -lmkl_intel_lp64 -lmkl_sequential -lmkl_core")
  • issm/trunk-jpl/externalpackages/dakota/install-6.2-pleiades.sh

    r23435 r25876  
    2222export DAK_SRC=$ISSM_DIR/externalpackages/dakota/src
    2323export DAK_BUILD=$ISSM_DIR/externalpackages/dakota/build
    24 export MPIHOME=$ISSM_DIR/externalpackages/mpich/install
    2524cp $DAK_SRC/cmake/BuildDakotaTemplate.cmake $DAK_SRC/cmake/BuildDakotaCustom.cmake
    26 patch $DAK_SRC/cmake/BuildDakotaCustom.cmake configs/6.2/BuildDakotaCustom.cmake.patch
     25patch $DAK_SRC/cmake/BuildDakotaCustom.cmake configs/6.2/BuildDakotaCustom.cmake.pfe.patch
    2726patch $DAK_SRC/cmake/DakotaDev.cmake configs/6.2/DakotaDev.cmake.patch
    2827patch $DAK_SRC/CMakeLists.txt configs/6.2/CMakeLists.txt.pfe.patch
     
    3635cd $DAK_BUILD
    3736
    38 cmake -D CMAKE_C_COMPILER=mpicc \
    39            -D CMAKE_CXX_COMPILER=mpicxx \
    40            -D CMAKE_Fortran_COMPILER=/usr/bin/gfortran \
    41                 -DHAVE_ACRO=off \
    42                 -DHAVE_JEGA=off \
    43                 -C $DAK_SRC/cmake/BuildDakotaCustom.cmake \
    44                 -C $DAK_SRC/cmake/DakotaDev.cmake \
    45                 $DAK_SRC
     37cmake \
     38        -DBUILD_SHARED_LIBS=OFF \
     39        -DBUILD_STATIC_LIBS=ON \
     40        -DCMAKE_C_COMPILER=mpicc \
     41        -DCMAKE_CXX_COMPILER=mpicxx \
     42        -DCMAKE_Fortran_COMPILER=mpif77 \
     43        -DBoost_NO_BOOST_CMAKE=TRUE \
     44        -DHAVE_ACRO=OFF \
     45        -DHAVE_JEGA=OFF \
     46        -DHAVE_QUESO=ON \
     47        -DDAKOTA_HAVE_GSL=ON \
     48        -C${DAK_SRC}/cmake/BuildDakotaCustom.cmake \
     49        -C${DAK_SRC}/cmake/DakotaDev.cmake \
     50        ${DAK_SRC}
     51
    4652cd ..
    4753
  • issm/trunk-jpl/externalpackages/triangle/install-pleiades.sh

    r23435 r25876  
    22set -eu
    33
    4 #Some cleanup
    5 rm -rf install triangle
    6 mkdir install
    74
    8 #Download from ISSM server
    9 $ISSM_DIR/scripts/DownloadExternalPackage.sh 'https://issm.ess.uci.edu/files/externalpackages/triangle.zip' 'triangle.zip'
     5# Constants
     6#
     7INSTALL_DIR="install"
    108
    11 #Untar
    12 cd install
    13 cp ../triangle.zip ./
    14 unzip triangle.zip
     9# Cleanup
     10rm -rf ${INSTALL_DIR} src
     11mkdir ${INSTALL_DIR} ${INSTALL_DIR}/include ${INSTALL_DIR}/lib src
    1512
    16 #copy new makefile
    17 cp ../configs/pleiades/configure.make ./
    18 cp ../makefile ./
     13# Download source
     14$ISSM_DIR/scripts/DownloadExternalPackage.sh "https://issm.ess.uci.edu/files/externalpackages/triangle.zip" "triangle.zip"
    1915
    20 #Compile triangle
    21 make
     16# Unpack source
     17unzip triangle.zip -d src
    2218
    23 #Patch triangle.h
    24 patch triangle.h ../triangle.h.patch
     19# Copy customized source files to 'src' directory
     20cp configs/makefile src
     21cp configs/triangle.h src
     22cp configs/linux/configure.make src
     23
     24# Compile
     25cd src
     26make shared
     27
     28# Install
     29cd ..
     30cp src/libtriangle.* ${INSTALL_DIR}/lib
     31cp src/triangle.h ${INSTALL_DIR}/include
     32
     33# Cleanup
     34rm -rf src
  • issm/trunk-jpl/m4/issm_options.m4

    r25716 r25876  
    309309                        export CXXFLAGS="-O3 -march=corei7-avx -std=c++11"
    310310                        export CFLAGS="-O3 -march=corei7-avx"
     311                elif test "${VENDOR}" == "intel-pleiades-mpi"; then
     312                        export CC=mpicc
     313                        export CXX=mpicxx
     314                        export CXXFLAGS="-O3 -march=corei7-avx -std=c++11"
     315                        export CFLAGS="-O3 -march=corei7-avx"
    311316                elif test "${VENDOR}" == "intel-pleiades-icpc"; then
    312317                        export CXXFLAGS="-g -O3 -ipo -axAVX -ipo -no-inline-min-size -inline-max-size=345 -no-inline-max-total-size -no-inline-max-per-routine -no-inline-max-per-compile -restrict -std=c++11"
Note: See TracChangeset for help on using the changeset viewer.