| 1234567891011121314151617181920 |
- #$ -o $HOME/worker_out.txt # stdout to file
- #$ -j y # merge stderr to stdout
- #$ -N Photon_Worker # job name
- #$ -l gpu_slots=1 # required #GPUs
- ##$ -l gtype=gt200 # GPU architecture
- #$ -l ostype=linux # required OS
- #$ -l h_rt=8:00:00 # required real time
- #$ -l h_vmem=2048M # required memory
- ##$ -M dirk.rothe@rwth-aachen.de
- LD_LIBRARY_PATH=/rwthfs/rz/cluster/home/dr872860/photon/boost_1_47_0/stage/lib/:/usr/local/cuda/lib64:$LD_LIBRARY_PATH # set env variable
- source $HOME/Python-2.7/venv/bin/activate
- CC=gcc
- CXX=g++
- OMP_NUM_THREADS=12
- cd /home/dr872860/usephoton
- export PYTHONPATH=$HOME/loco/dirk;python -m photon_worker -w 1 -p /home/dr872860/photon/photon -u http://loco.visual-library.de&
- export PYTHONPATH=$HOME/loco/dirk;python -m photon_worker -w 2 -p /home/dr872860/photon/photon -u http://loco.visual-library.de
|