#!/usr/bin/env zsh module load cuda/90 module load cudnn/7.0.5 ################################################################ export PATH=~/local/bin:$PATH export PATH=~/.local/bin:$PATH export PATH=/usr/local_rwth/sw/cuda/9.0.176/bin:$PATH export PYTHONPATH=$PYTHONPATH:~/.local/lib/python2.7/site-packages export PYTHONPATH=$PYTHONPATH:~/local/lib/python2.7/site-packages export LD_LIBRARY_PATH=/usr/local_rwth/sw/cuda/9.0.176/lib64:$LD_LIBRARY_PATH ### Job name #BSUB -J MnistCNN ### File / path where STDOUT & STDERR will be written #BSUB -o MnistCNN ### Request the time you need for execution in minutes ### The format for the parameter is: [hour:]minute, ### that means for 80 minutes you could also use this: 1:20 #BSUB -W 2:00 ### Request memory you need for your job in TOTAL in MB #BSUB -M 10240 ### Make sure the jobs can use the HPCWORK file system #BSUB -R "select[hpcwork]" ### Use GPU-cluster #BSUB -a gpu python keras/examples/mnist_cnn.py