Changeset 24388


Ignore:
Timestamp:
11/22/19 12:22:15 (5 years ago)
Author:
jdquinn
Message:

BUG: Testing if parallel HDF5/NetCDF resolve SE issue (works locally).

Location:
issm/trunk-jpl
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/etc/environment.sh

    r24380 r24388  
    44# ISSM_DIR and ISSM_ARCH should have been defined already in your shell
    55# settings file (i.e. .bashrc, .cshrc).
     6#
     7# TODO:
     8# - Condition all path modifications on existence of external package 'install'
     9#       directory
     10#
    611
    712## Functions
     
    159164        fi
    160165} #}}}
    161 
    162 # FIXME: during installation packages are installed one by one but
    163 # environment.sh was sourced before so new packages are NOT in the path. May
    164 # source environment.sh again with:
    165 #       if [ -z $(echo "$PATH" | grep "$MATLAB_DIR") ]; then export $PATH...; fi
    166166
    167167# Windows compilers:
     
    437437
    438438#CURL
    439 ld_library_path_prepend "${ISSM_DIR}/externalpackages/curl/install/lib"
    440 dyld_library_path_prepend "${ISSM_DIR}/externalpackages/curl/install/lib"
    441 path_prepend "${ISSM_DIR}/externalpackages/curl/install/bin"
     439CURL_DIR="${ISSM_DIR}/externalpackages/curl/install"
     440if [ -d "${CURL_DIR}" ]; then
     441        ld_library_path_prepend "${CURL_DIR}/lib"
     442        dyld_library_path_prepend "${CURL_DIR}/lib"
     443        path_prepend "${CURL_DIR}/bin"
     444fi
    442445
    443446#NEOPZ
  • issm/trunk-jpl/externalpackages/gmt/configs/Linux/cmake/ConfigUser.cmake

    r24328 r24388  
    136136# Set location of NetCDF (can be root directory, path to header file or path
    137137# to nc-config) [auto]:
    138 set (NETCDF_ROOT "$ENV{ISSM_DIR}/externalpackages/petsc/install")
     138set (NETCDF_ROOT "$ENV{ISSM_DIR}/externalpackages/netcdf/install")
    139139
    140140# Set location of GDAL (can be root directory, path to header file or path to
  • issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel-with_tests.sh

    r24380 r24388  
    4141./configure \
    4242        --prefix="${ISSM_DIR}/externalpackages/netcdf/install" \
    43         --disbable-shared \
    4443        --enable-parallel-tests \
    4544        --disable-doxygen
  • issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel.sh

    r24380 r24388  
    4141./configure \
    4242        --prefix="${ISSM_DIR}/externalpackages/netcdf/install" \
    43         --disable-shared \
    4443        --disable-doxygen
    4544
  • issm/trunk-jpl/jenkins/linux64_ross_se

    r24383 r24388  
    4848        cmake           install.sh
    4949        mpich           install-3.2-linux64.sh
    50         hdf5            install-1.10.sh
    51         netcdf          install-4.7.sh
     50        hdf5            install-1.10-parallel.sh
     51        netcdf          install-4.7-parallel.sh
    5252        lapack          install-3.8-linux.sh
    5353        petsc           install-3.7-linux64.sh
     
    8080# NOTE: Possible problem of access to all_vertices.txt if more than 1.
    8181#
    82 NUMCPUS_RUN=1
     82NUMCPUS_RUN=8
    8383
    8484#Nightly run options. The matlab routine runme.m will be called
Note: See TracChangeset for help on using the changeset viewer.