Changes between Version 3 and Version 4 of simple_client

Show
Ignore:
Timestamp:
12/06/11 17:53:03 (13 years ago)
Author:
mmamonski
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • simple_client

    v3 v4  
    22 
    33== Requirements == 
    4  
     4{{{ 
    55-q queue - kolejka, BROKER jest, COMP jest 
    66-a data_godzina - BROKER ?, COMP nie ma 
     
    88-h hold - w COMP nie ma, w BROKERze - two phase commit 
    99-I interaktywne - brak wsparcia 
    10 -l zasoby - opcja t 
     10-l zasoby - 
    1111 
     12* procs/ncpus - liczba procesorw 
     13* nodes=N:ppn=4 - wymuszenie topologi  
     14* propertiesy wezlow, np.: 
     15 
     16* -lmem pamiec= 
     17 
     18}}} 
    1219== Example Usage == 
    1320 
    1421 
    1522== 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 
     42module load namd  
     43 
     44charmrun namd2 heat.namd &> namd.log 
     45 
     46}}} 
     47 
     48translates to the following Job Profile: 
     49{{{ 
     50}}}