Ignore:
Timestamp:
Dec 13, 2011, 9:23:31 AM (12 years ago)
Author:
g7moreau
Message:
  • General makefile width install and update
  • Cut long line
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/oarutils/oar-parexec

    r47 r49  
    415415These jobs could be launch by:
    416416
    417  oarsub -n test -l /core=6,walltime=04:00:00 "oar-parexec -f ./subjob.list.txt"
     417 oarsub -n test -l /core=6,walltime=04:00:00 \
     418   "oar-parexec -f ./subjob.list.txt"
    418419
    419420=head2 Folder job
     
    425426A very simple job could be:
    426427
    427  oarsub -n test -l /core=6,walltime=04:00:00 "oar-parexec -d ./subjob.d -c 'sleep 10; env'"
     428 oarsub -n test -l /core=6,walltime=04:00:00 \
     429   "oar-parexec -d ./subjob.d -c 'sleep 10; env'"
    428430
    429431The command C<env> will be excuted in all folder F<test1>, F<test2>... after a 10s pause.
     
    442444Example with parallel small job on 2 core:
    443445
    444  oarsub -n test -l /core=6,walltime=04:00:00 "oar-parexec -j 2 -f ./subjob.list.txt"
     446 oarsub -n test -l /core=6,walltime=04:00:00 \
     447   "oar-parexec -j 2 -f ./subjob.list.txt"
    445448
    446449=head2 Tracing and master crash
     
    451454and not re-run these job the second and next time.
    452455
    453  oarsub -n test -l /core=6,walltime=04:00:00 "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log"
     456 oarsub -n test -l /core=6,walltime=04:00:00 \
     457   "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log"
    454458
    455459After a crash or an C<oardel> command,
    456460you can then re-run the same command that will end to execute the jobs in the list
    457461
    458  oarsub -n test -l /core=6,walltime=04:00:00 "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log"
     462 oarsub -n test -l /core=6,walltime=04:00:00 \
     463   "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log"
    459464
    460465C<logtrace> file are just plain file.
     
    473478After being checkpointed, C<oar-parexec> do not start any new small job.
    474479
    475  oarsub -t idempotent -n test -l /core=6,walltime=04:00:00 --checkpoint 720 \
     480 oarsub -t idempotent -n test \
     481   -l /core=6,walltime=04:00:00 \
     482   --checkpoint 720 \
    476483   "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log"
    477484
Note: See TracChangeset for help on using the changeset viewer.