Difference between revisions of "Using Irene Rome"
From Planets
Line 2: | Line 2: | ||
== Some useful commands == | == Some useful commands == | ||
+ | * To access Irene Interactive Documentation: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | machine.info | ||
+ | </syntaxhighlight> | ||
+ | |||
* To display infos about project accounting: | * To display infos about project accounting: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
Line 16: | Line 21: | ||
ccc_password_expiration | ccc_password_expiration | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
* To change passwd: | * To change passwd: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
Line 63: | Line 69: | ||
ccc_msub run_gcm.job | ccc_msub run_gcm.job | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | * To display information about your jobs: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | ccc_mpp -u $USER | ||
+ | </syntaxhighlight> | ||
+ | * To kill job number ''jobid'' | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | ccc_mdel jobid | ||
+ | </syntaxhighlight> | ||
+ | * To display infos about project accounting: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | ccc_myproject | ||
+ | </syntaxhighlight> | ||
+ | |||
[[Category:FAQ]] | [[Category:FAQ]] |
Revision as of 11:03, 26 July 2022
This page provides a summary of examples and tools designed to help you get used with the Irene Rome environment.
Some useful commands
- To access Irene Interactive Documentation:
machine.info
- To display infos about project accounting:
ccc_myproject
- To know about user disk quota
ccc_quota
- To know about how long your passwd will be active:
ccc_password_expiration
- To change passwd:
passwd
Example of a job to run a GCM simulation
#!/bin/bash
# Partition to run on:
#MSUB -q rome
# project to run on
#MSUB -A gen10391
# disks to use
#MSUB -m scratch,work,store
# Job name
#MSUB -r run_gcm
# Job standard output:
#MSUB -o run_gcm.%I
# Job standard error:
#MSUB -e run_gcm.%I
# number of OpenMP threads c
#MSUB -c 2
# number of MPI tasks n
#MSUB -n 16
# number of nodes to use N
#MSUB -N 1
# max job run time T (in seconds)
#MSUB -T 3600
# request exculsive use of the node (128 cores)
##MSUB -x
source ../trunk/LMDZ.COMMON/arch.env
export OMP_STACKSIZE=400M
export OMP_NUM_THREADS=2
ccc_mprun -l gcm_32x32x15_phystd_para.e > gcm.out 2>&1
- To launch the job script run_gcm.job:
ccc_msub run_gcm.job
- To display information about your jobs:
ccc_mpp -u $USER
- To kill job number jobid
ccc_mdel jobid
- To display infos about project accounting:
ccc_myproject