dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit a0da341508f31486af194672234bfbdb82306ee7
parent edc16f7ff429d5259c03e22a10903a763d30f581
Author: Anders Damsgaard Christensen <adc@master>
Date:   Sun,  4 Nov 2012 11:17:33 +0100

bashrc updated for ICE cluster

Diffstat:
M.bashrc | 16+++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/.bashrc b/.bashrc @@ -95,4 +95,18 @@ complete -cf sudo #export LC_ALL= #export LC_COLLATE="C" #fi - +if [ `hostname` == "master" ] || [ `hostname` == "node*" ]; then + + # PGI compiler + PGI=/opt/pgi; export PG + PATH=/opt/pgi/linux86-64/11.9/bin:$PATH; export PATH + MANPATH=$MANPATH:/opt/pgi/linux86-64/11.9/man; export MANPATH + LM_LICENSE_FILE=$LM_LICENSE_FILE:/opt/pgi/license.dat;export LM_LICENSE_FILE + + # Maui scheduler + export PATH=$PATH:/usr/local/maui/bin:/usr/local/maui/sbin + + # CUDA environment variables + export PATH=/usr/local/cuda/bin:$PATH + export LD_LIBRARY_PATH=/usr/local/cuda/lib64:/usr/local/cuda/lib:$LD_LIBRARY_PATH +fi