Changeset 1944


Ignore:
Timestamp:
10/01/20 16:49:18 (4 years ago)
Author:
yushan
Message:

trunk : modify Jean-Zay job submission account to wuu

Location:
XIOS/trunk/xios_test_suite
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/xios_test_suite/COMPILE/config_compile.py

    r1916 r1944  
    33import subprocess 
    44import os 
     5 
     6user_acct=os.getenv("user_account") 
    57 
    68def OSinfo(runthis): 
     
    3032        f.write("#MSUB -T 1800\n") 
    3133        f.write("#MSUB -q skylake\n") 
    32         f.write("#MSUB -A gen0826\n") 
     34        f.write("#MSUB -A "+user_acct+"\n") 
    3335        f.write("#MSUB -Q test\n") 
    3436        f.write("#MSUB -m work,scratch\n") 
     
    5355        f.write("#SBATCH -o output.out\n")  
    5456        f.write("#SBATCH -e error.err \n")  
    55         f.write("#SBATCH -A psl@cpu\n") 
     57        f.write("#SBATCH -A "+user_acct+"\n") 
    5658        f.write("#SBATCH --job-name=XIOS_rev"+revision+"\n") 
    5759        f.write("cd ${SLURM_SUBMIT_DIR}\n") 
  • XIOS/trunk/xios_test_suite/ENV/irene.env

    r1909 r1944  
    1414 
    1515export PYTHON=python3 
     16export user_account=gen0826 
    1617 
    1718mkdir -p $xios_test_suite_repository ; CHMOD $xios_test_suite_repository 
  • XIOS/trunk/xios_test_suite/ENV/jeanzay.env

    r1910 r1944  
    1515 
    1616export PYTHON=python 
     17export user_account="wuu@cpu" 
    1718 
    1819mkdir -p $xios_test_suite_repository ; CHMOD $xios_test_suite_repository 
  • XIOS/trunk/xios_test_suite/TEST_SUITE/step1.py

    r1924 r1944  
    1414machine=os.getenv("xios_machine_name") 
    1515svnR=os.getenv("svnR") 
     16user_acct=os.getenv("user_account") 
    1617 
    1718nb_proc_irene=40 # this must be >= NumberClients+NumberServers for all configs for all test folders 
     
    6364            fh.write("#MSUB -T 1800\n") 
    6465            fh.write("#MSUB -q skylake\n")      
    65             fh.write("#MSUB -A gen0826\n") 
     66            fh.write("#MSUB -A "+user_acct+"\n") 
    6667            fh.write("#MSUB -Q test\n") 
    6768            fh.write("#MSUB -m work,scratch\n") 
     
    8384            fh.write("#SBATCH -e error.out\n") 
    8485            fh.write("#SBATCH -t 00:10:00\n") 
    85             fh.write("#SBATCH --account=psl@cpu\n") 
     86            fh.write("#SBATCH --account="+user_acct+"\n") 
    8687            fh.write("ulimit -c 0\n") 
    8788            fh.write("cd ${SLURM_SUBMIT_DIR}\n") 
     
    122123            fh.write("#MSUB -T 1800\n") 
    123124            fh.write("#MSUB -q skylake\n")      
    124             fh.write("#MSUB -A gen0826\n") 
     125            fh.write("#MSUB -A "+user_acct+"\n") 
    125126            fh.write("#MSUB -Q test\n") 
    126127            fh.write("#MSUB -m work,scratch\n") 
     
    143144            fh.write("#SBATCH --hint=nomultithread\n") 
    144145            fh.write("#SBATCH -t 00:10:00\n") 
    145             fh.write("#SBATCH --account=psl@cpu\n") 
     146            fh.write("#SBATCH --account="+user_acct+"\n") 
    146147            fh.write("#SBATCH --job-name=XIOS_rev"+svnR+"\n") 
    147148            fh.write("ulimit -c 0\n") 
Note: See TracChangeset for help on using the changeset viewer.