New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
X64_CURIE.cfg in branches/2015/dev_r5092_CNRS18_TRUST/NEMOGCM/TRUST/cfg – NEMO

source: branches/2015/dev_r5092_CNRS18_TRUST/NEMOGCM/TRUST/cfg/X64_CURIE.cfg @ 8859

Last change on this file since 8859 was 8859, checked in by nicolasmartin, 6 years ago

Continuation of global refactoring of Trusting tool

  • Introduce new 'dev' mode beetween 'debug' and 'prod' modes to skip XIOS compilation from scratch and working in a solely testing directory (thanks Andrew for the suggestion)
  • Switch cfg files from 'svn:mime-type=text/x-shellscript' to 'svn:executable' trying to get syntax highlighting under Trac
  • Bugfixes: correct XIOS branch 'XIOS_DEV_CMIP6' for ORCA1 and remove remaining 'TRUST_DIR_BENCHMARK' (replace by TRUST_TEST_BENCHMARK)
  • Improve the workflow displayed in the terminal
  • Property svn:executable set to *
File size: 993 bytes
Line 
1## Curie configuration
2##--------------------------------------------------------------------------------
3
4## Compilation
5##------------
6
7TRUST_COMPILE_FORTRAN='ifort'
8TRUST_COMPILE_MPI='bullxmpi/'
9TRUST_COMPILE_NETCDF='netcdf-[0-9]'
10
11
12## Inputs/Outputs
13## --------------
14
15TRUST_IO_CDO='cdo'
16
17
18## Running
19##--------
20
21TRUST_JOB_SUBMIT="ccc_msub \${TRUST_JOB_SCRIPT} | grep -oe '\<[0-9]*\>'"
22TRUST_JOB_STATE="ccc_mpp  | grep \${TRUST_JOB_ID}"
23TRUST_JOB_INFO="ccc_macct        \${TRUST_JOB_ID}"
24TRUST_JOB_KILL="ccc_mdel         \${TRUST_JOB_ID}"
25
26TRUST_JOB_TIME="
27ccc_macct \${TRUST_JOB_ID} | grep     \"\${TRUST_JOB_ID}.0 *opa\" \
28    | awk '{print               \$9      }'                 \
29"
30TRUST_JOB_RAM_P="
31ccc_macct \${TRUST_JOB_ID} | grep -m1 \"\${TRUST_JOB_ID}.0\"      \
32    | awk '{printf \"%d Mo\n\", \$2; exit}'                 \
33"
34TRUST_JOB_RAM_V="
35ccc_macct \${TRUST_JOB_ID} | grep -m1 \"\${TRUST_JOB_ID}.0\"      \
36    | awk '{printf \"%d Go\n\", \$7; exit}'                 \
37"
Note: See TracBrowser for help on using the repository browser.