Environment variables on GPU11 (math047068)


The following settings should be placed at the end of the ~/.bashrc file in your home directory on GPU11:

# CUDA
export PATH=/usr/local/cuda/bin:$PATH
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64

#  Intel Compiler
source /opt/intel/bin/iccvars.sh intel64
source /opt/intel/bin/ifortvars.sh intel64
source /opt/intel/vtune_amplifier_xe/amplxe-vars.sh intel64 > /dev/null
source /opt/intel/inspector_xe/inspxe-vars.sh intel64 > /dev/null
source /opt/intel/advisor_xe/advixe-vars.sh intel64 > /dev/null

# PGI
export PATH=/opt/pgi/linux86-64/14.10/bin:$PATH
export MANPATH=$MANPATH:/opt/pgi/linux86-64/14.10/man
export LM_LICENSE_FILE=$LM_LICENSE_FILE:/opt/pgi/license.dat
# PGI MPICH (only if MPI is used ! )
export PATH=/opt/pgi/linux86-64/14.10/mpi/mpich/bin:$PATH
export MANPATH=$MANPATH:/opt/pgi/linux86-64/14.10/mpi/mpich/man


# git
# https://143.50.47.112:8443/
git config --global http.sslVerify false
git config --global user.email gundolf.haase@uni-graz.at                           #  y o u r   email address
git config --global user.name "Gundolf Haase"                                      #  y o u r   name
git config --global push.default simple


The COMPILER.default.mk files require the following adaptations in comparison to mephisto:

GCC_

NVCC_

GCC_ (in WS13/templates/par)


Oct 27, 2014