| 12345678910111213141516171819202122 |
- #!/usr/bin/env zsh
- #BSUB -J Photon_Worker
- #BSUB -o $HOME/worker_out.txt
- #BSUB -u nicolai.viol@comsys.rwth-aachen.de
- #BSUB -B
- #BSUB -W 00:15
- #BSUB -M 2048
- # #BSUB -q gpu
- #BSUB -a gpu
- #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/lws-env/bin/activate
- #CC=gcc
- #CXX=g++
- OMP_NUM_THREADS=12
- cd $HOME
- export PYTHONPATH=$HOME/lws-trunk:$HOME/lws-trunk/3rdparty:$HOME/lws-trunk/worker
- python -m photon_worker -w 1 -p $HOME/photon -u http://nostromo.informatik.rwth-aachen.de:20082 -t 600 &
- python -m photon_worker -w 2 -p $HOME/photon -u http://nostromo.informatik.rwth-aachen.de:20082 -t 600
|