Changes between Version 1 and Version 2 of Documentation/UserGuide/TestCaseBatch


Ignore:
Timestamp:
2013-11-26T17:13:32+01:00 (11 years ago)
Author:
acosce
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/TestCaseBatch

    v1 v2  
    1 = How to run a simple test case with ORCHIDEE offline with a batch job =  
     1{{{ 
     2#!html 
     3<h1>How to run a simple test case with ORCHIDEE offline with a batch job</h1> 
     4}}} 
     5 
     6[[PageOutline]] 
     7 
    28 
    39First prepare a run directory following the how to [wiki:HowTo/TestCase1 How to run a simple test case with ORCHIDEE]. 
     
    511Then prepare a job according to computer environement and submit it.  
    612 
    7  
     13= MPI =  
    814== Exemple at curie/TGCC == 
    915 * First prepare a run directory following the how to [wiki:HowTo/TestCase1 How to run a simple test case with ORCHIDEE]. But instead of using wget to copy the files, they can be found in the directory /ccc/work/cont003/dsm/p86ipsl/IGCM and can be linked or copied directly. The path is the same.  
     
    5258== Exemple at ada/IDRIS == 
    5359to come 
     60 
     61= MPI_OMP =  
     62== Exemple at Curie/TGCC ==  
     63{{{ 
     64#!/bin/bash  
     65#MSUB -r test                 # Request name  
     66#MSUB -n 32                   # Total number of tasks to use (MPI) 
     67#MSUB -c 2                    # Number of threads per task to use (OMP) 
     68#MSUB -N 4                    # Number of nodes  = 32*2/16 = 4 
     69#MSUB -T 1800                 # Elapsed time limit in seconds  
     70#MSUB -q standard             # Choosing thin nodes 
     71#MSUB -Q test                 # Choosing test Queue 
     72#MSUB -o Script_output        # Standard output 
     73#MSUB -e Script_output        # Error output 
     74#MSUB -A gen****              # submission group number 
     75 
     76 
     77set -x  
     78cd ${BRIDGE_MSUB_PWD} 
     79export KMP_STACKSIZE=2g 
     80export KMP_LIBRARY=turnaround 
     81export MKL_SERIAL=YES 
     82export OMP_NUM_THREADS=2 
     83 
     84 
     85ccc_mprun ./lmdz.x 
     86 
     87}}} 
     88 
     89 
     90== Exemple at ada/IDRIS == 
     91to come