Last change
on this file since 386 was
134,
checked in by aslmd, 14 years ago
|
CHANGEMENT ARBORESCENCE ETAPE 1 -- NON COMPLET
|
File size:
1.3 KB
|
Rev | Line | |
---|
[52] | 1 | # Exemple de job pour soumission en MPI en classe debug |
---|
| 2 | # pour soumettre ce job: llsubmit nom_du_job |
---|
| 3 | # @ job_type = parallel |
---|
| 4 | ### @ class = debug |
---|
| 5 | # @ wall_clock_limit = 2:00:00 |
---|
| 6 | # @ cpu_limit = 1:58:00 |
---|
| 7 | # Memoire max. utilisee (ici 3.2 Go) # rappel: prendre data+stack <=3.7gb |
---|
| 8 | # @ data_limit = 20.8gb |
---|
| 9 | # @ stack_limit=8.8gb,8.8gb |
---|
| 10 | # Nombre de processus demandés: |
---|
| 11 | # @ total_tasks = 8 |
---|
| 12 | # Nombre de tâches OpenMP/pthreads par processus MPI |
---|
| 13 | # @ parallel_threads = 8 |
---|
| 14 | # Nom du travail LoadLeveler |
---|
| 15 | # @ job_name = job_mpi8_omp8 |
---|
| 16 | # Fichier de sortie standard du travail |
---|
| 17 | # @ output = $(job_name).$(jobid) |
---|
| 18 | # Fichier de sortie d'erreur du travail |
---|
| 19 | # @ error = $(job_name).$(jobid) |
---|
| 20 | # @ notification = error |
---|
| 21 | # @ queue |
---|
| 22 | |
---|
| 23 | # Pour avoir l'echo des commandes |
---|
| 24 | set -x |
---|
| 25 | pwd |
---|
| 26 | ls -A |
---|
| 27 | |
---|
| 28 | # La memoire STACK max. (defaut 4Mo) utilisee (ici 64 Mo) par |
---|
| 29 | # les variables privees de chaque thread. |
---|
| 30 | #export XLSMPOPTS=$XLSMPOPTS:stack=65536000 |
---|
| 31 | ## 128 Mo |
---|
| 32 | #export XLSMPOPTS=$XLSMPOPTS:stack=131072000 |
---|
| 33 | ## 256 Mo |
---|
| 34 | #export XLSMPOPTS=$XLSMPOPTS:stack=262144000 |
---|
| 35 | ## 512 Mo |
---|
| 36 | #export XLSMPOPTS=$XLSMPOPTS:stack=524288000 |
---|
| 37 | ## 1024 Mo |
---|
| 38 | export XLSMPOPTS=$XLSMPOPTS:stack=1048576000 |
---|
| 39 | ## 1536 Mo |
---|
| 40 | #export XLSMPOPTS=$XLSMPOPTS:stack=1572864000 |
---|
| 41 | |
---|
| 42 | # Execution du programme |
---|
| 43 | hpmcount ./gcm_320x640x30_phynophys_para.e > gcm.out 2>&1 |
---|
| 44 | |
---|
| 45 | ls -At |
---|
Note: See
TracBrowser
for help on using the repository browser.