Skip to content
Snippets Groups Projects
Commit 8f3fc243 authored by patmjen's avatar patmjen
Browse files

Fix error in init script

module avail prints its output to stderr. In interactive shells, it
seems this stderr is automatically redirected to stdout, so grep
would pick it up. This is not the case in batch jobs, so we manually
redirect the stderr output to stdout.
parent 678d3f95
No related branches found
No related tags found
No related merge requests found
...@@ -11,12 +11,12 @@ CUDA_VERSION=11.6 # CUDA version (default: 11.6) ...@@ -11,12 +11,12 @@ CUDA_VERSION=11.6 # CUDA version (default: 11.6)
# Load modules # Load modules
module load python3/$PYTHON_VERSION module load python3/$PYTHON_VERSION
module load $(module avail -o modulepath -t -C "python-${PYTHON_VERSION}" | grep "numpy/") module load $(module avail -o modulepath -t -C "python-${PYTHON_VERSION}" 2>&1 | grep "numpy/")
module load $(module avail -o modulepath -t -C "python-${PYTHON_VERSION}" | grep "scipy/") module load $(module avail -o modulepath -t -C "python-${PYTHON_VERSION}" 2>&1 | grep "scipy/")
module load $(module avail -o modulepath -t -C "python-${PYTHON_VERSION}" | grep "matplotlib/") module load $(module avail -o modulepath -t -C "python-${PYTHON_VERSION}" 2>&1 | grep "matplotlib/")
module load $(module avail -o modulepath -t -C "python-${PYTHON_VERSION}" | grep "pandas/") module load $(module avail -o modulepath -t -C "python-${PYTHON_VERSION}" 2>&1 | grep "pandas/")
module load cuda/$CUDA_VERSION module load cuda/$CUDA_VERSION
CUDNN_MOD=$(module avail -o modulepath -t cudnn | grep "cuda-${CUDA_VERSION}" | sort | tail -n1) CUDNN_MOD=$(module avail -o modulepath -t cudnn | grep "cuda-${CUDA_VERSION}" 2>&1 | sort | tail -n1)
if [[ ${CUDNN_MOD} ]] if [[ ${CUDNN_MOD} ]]
then then
module load ${CUDNN_MOD} module load ${CUDNN_MOD}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment