Changeset 25876
- Timestamp:
- 12/16/20 16:26:32 (4 years ago)
- 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 16 16 --- 17 17 > set(BOOST_ROOT 18 > "/nasa/ boost/1.50.0"18 > "/nasa/pkgsrc/sles12/2018Q3/" 19 19 > CACHE PATH "Use non-standard Boost install" FORCE) 20 20 > set( Boost_NO_SYSTEM_PATHS TRUE -
issm/trunk-jpl/externalpackages/dakota/configs/6.2/CMakeLists.txt.pfe.patch
r21687 r25876 3 3 --- 4 4 > # 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 22 22 export DAK_SRC=$ISSM_DIR/externalpackages/dakota/src 23 23 export DAK_BUILD=$ISSM_DIR/externalpackages/dakota/build 24 export MPIHOME=$ISSM_DIR/externalpackages/mpich/install25 24 cp $DAK_SRC/cmake/BuildDakotaTemplate.cmake $DAK_SRC/cmake/BuildDakotaCustom.cmake 26 patch $DAK_SRC/cmake/BuildDakotaCustom.cmake configs/6.2/BuildDakotaCustom.cmake.p atch25 patch $DAK_SRC/cmake/BuildDakotaCustom.cmake configs/6.2/BuildDakotaCustom.cmake.pfe.patch 27 26 patch $DAK_SRC/cmake/DakotaDev.cmake configs/6.2/DakotaDev.cmake.patch 28 27 patch $DAK_SRC/CMakeLists.txt configs/6.2/CMakeLists.txt.pfe.patch … … 36 35 cd $DAK_BUILD 37 36 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 37 cmake \ 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 46 52 cd .. 47 53 -
issm/trunk-jpl/externalpackages/triangle/install-pleiades.sh
r23435 r25876 2 2 set -eu 3 3 4 #Some cleanup5 rm -rf install triangle6 mkdir install7 4 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 # 7 INSTALL_DIR="install" 10 8 11 #Untar 12 cd install 13 cp ../triangle.zip ./ 14 unzip triangle.zip 9 # Cleanup 10 rm -rf ${INSTALL_DIR} src 11 mkdir ${INSTALL_DIR} ${INSTALL_DIR}/include ${INSTALL_DIR}/lib src 15 12 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" 19 15 20 # Compile triangle21 make 16 # Unpack source 17 unzip triangle.zip -d src 22 18 23 #Patch triangle.h 24 patch triangle.h ../triangle.h.patch 19 # Copy customized source files to 'src' directory 20 cp configs/makefile src 21 cp configs/triangle.h src 22 cp configs/linux/configure.make src 23 24 # Compile 25 cd src 26 make shared 27 28 # Install 29 cd .. 30 cp src/libtriangle.* ${INSTALL_DIR}/lib 31 cp src/triangle.h ${INSTALL_DIR}/include 32 33 # Cleanup 34 rm -rf src -
issm/trunk-jpl/m4/issm_options.m4
r25716 r25876 309 309 export CXXFLAGS="-O3 -march=corei7-avx -std=c++11" 310 310 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" 311 316 elif test "${VENDOR}" == "intel-pleiades-icpc"; then 312 317 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.