CROCO
De Wikicima
(Diferencias entre revisiones)
(Página creada con «Web page of the instalation of the ocean model [https://www.croco-ocean.org/ CROCO] in CIMA's HPC 'hydra' = Installation = = Example of use =») |
|||
Línea 2: | Línea 2: | ||
= Installation = |
= Installation = |
||
+ | CIMA's HPC has a common folder where all the people has access. This is going to be the place where CROCO model will be installed. |
||
+ | |||
+ | The installation is going to be in the following <CODE>INSTALLDIR=/share/CROCO</CODE> folder. |
||
+ | |||
+ | Downloading the code (there is a GItlab repository, but by now, we are going to install closed releases) |
||
+ | <PRE style="shell"> |
||
+ | $ wget https://gitlab.inria.fr/croco-ocean/croco/-/archive/v2.1.0/croco-v2.1.0.tar.gz |
||
+ | </PRE> |
||
+ | |||
+ | Creating the folder of the compilation (using intel compiler and shared memory '''dmpar''') and where to deploy the code |
||
+ | <PRE style="shell"> |
||
+ | $ mkdir $INSTALLDIR/v210 |
||
+ | $ cd $INSTALLDIR/v210 |
||
+ | $ mkdir -p intel/dmpar |
||
+ | $ git clone --branch v2.1.0 https://gitlab.inria.fr/croco-ocean/croco.git croco-v2.1.0 |
||
+ | </PRE> |
||
+ | |||
Revisión de 14:23 15 jul 2025
Web page of the instalation of the ocean model CROCO in CIMA's HPC 'hydra'
Installation
CIMA's HPC has a common folder where all the people has access. This is going to be the place where CROCO model will be installed.
The installation is going to be in the following INSTALLDIR=/share/CROCO
folder.
Downloading the code (there is a GItlab repository, but by now, we are going to install closed releases)
$ wget https://gitlab.inria.fr/croco-ocean/croco/-/archive/v2.1.0/croco-v2.1.0.tar.gz
Creating the folder of the compilation (using intel compiler and shared memory dmpar) and where to deploy the code
$ mkdir $INSTALLDIR/v210 $ cd $INSTALLDIR/v210 $ mkdir -p intel/dmpar $ git clone --branch v2.1.0 https://gitlab.inria.fr/croco-ocean/croco.git croco-v2.1.0