Changes between Version 131 and Version 132 of FermeLocale


Ignore:
Timestamp:
16/02/2024 13:43:58 (3 months ago)
Author:
lambert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FermeLocale

    v131 v132  
    153153
    154154== Utilisation du batch HT-Condor sur la ferme locale ==
     155
    155156=== Machines pour la soumission de jobs ===
    156157
     
    160161- lpsc-batch-centos7 (CentOS Linux release 7.4)
    161162
    162 
    163163=== Prérequis pour soumettre un job ===
    164164
     
    178178D'autres univers existent et pourront être proposés au besoin.
    179179
    180 === Exemple de fichier de soumission ====
     180=== Exemple de fichier de soumission ===
     181
     182==== Python ====
     183
     184{{{
     185
     186  # Définition de l'univers
     187  universe = vanilla
     188  # Chemin vers l'exécutable
     189  executable = ./test_python.py
     190
     191  # Fichiers à produire en sortie
     192  output = test_python.out
     193  log = test_python.log
     194  error = test_python.err
     195 
     196  # directive pour le transfert des fichiers de sortie depuis le nœud d’exécution
     197  should_transfer_files = YES
     198  when_to_transfer_output = ON_EXIT
     199 
     200  queue
     201}}}
     202
     203==== Shell ====
    181204
    182205{{{