gc_array.oar 819 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #!/bin/bash
  2. ################################################################################
  3. #
  4. ################################################################################
  5. #-----------------------------------------------------------
  6. # Les directives OAR
  7. #-----------------------------------------------------------
  8. # donner un nom au job
  9. #OAR -n matlab_gc_array
  10. # les ressources
  11. #OAR -l /core=1,walltime=00:20
  12. # le fichier de paramètres (1 ligne par instance)
  13. #OAR --array-param-file gc_input.txt
  14. # la file de soumission
  15. #OAR -t besteffort
  16. #OAR -t idempotent
  17. #OAR -O cg.%jobid%.stdout
  18. #OAR -E cg.%jobid%.stderror
  19. # optionnel (mais intéressant -cf gc_postraitement.sh -):
  20. # -> récupérer l'ID du job/batch lancé
  21. echo "array_id:$OAR_ARRAY_ID"
  22. # nom du programme
  23. PROG="gc_matlab.sh"
  24. ./$PROG "$@"
  25. exit