Changes between Version 3 and Version 4 of simple_client
- Timestamp:
- 12/06/11 17:53:03 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
simple_client
v3 v4 2 2 3 3 == Requirements == 4 4 {{{ 5 5 -q queue - kolejka, BROKER jest, COMP jest 6 6 -a data_godzina - BROKER ?, COMP nie ma … … 8 8 -h hold - w COMP nie ma, w BROKERze - two phase commit 9 9 -I interaktywne - brak wsparcia 10 -l zasoby - opcja t10 -l zasoby - 11 11 12 * procs/ncpus - liczba procesorw 13 * nodes=N:ppn=4 - wymuszenie topologi 14 * propertiesy wezlow, np.: 15 16 * -lmem pamiec= 17 18 }}} 12 19 == Example Usage == 13 20 14 21 15 22 == Example QCG script == 23 {{{ 24 #!/bin/sh 25 #QCG 26 #QCG queue=plgrid-wp4 27 #QCG walltime=0:01:00 28 #QCG procs=32 29 #or specifying topology 30 #QCG nodes=4:ppn=8 31 #QCG name=HeatSim 32 #QCG output=${jobid}.out 33 #QCG error=${joibd}.err 34 #QCG candidate_host=reef 35 #QCG stage-in=heat.namd 36 #QCG stage-in=test/2nue.modif.xplor.psf -> input.psf 37 #QCG stage-out=heat.coor 38 #QCG node_properties=mhz2666 39 #QCG watch_file=namd.log 40 41 #any module load/add command implicitly adds requirement on SP selection 42 module load namd 43 44 charmrun namd2 heat.namd &> namd.log 45 46 }}} 47 48 translates to the following Job Profile: 49 {{{ 50 }}}