Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
documentation:tools:software:adf [2016/07/07 10:03] – ltaulell | documentation:tools:software:adf [2025/03/12 14:14] (Version actuelle) – supprimée ltaulell | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
- | ====== ADF ====== | ||
- | <WRAP round important> | ||
- | |||
- | ^ Version | ||
- | | 2014.11 | ||
- | | | **modulefile** : ADF/ | ||
- | | 2014.10 | ||
- | | | **modulefile** : ADF/ | ||
- | | 2014.02 | ||
- | | | **modulefile** : ADF/ | ||
- | | 2013.01 | ||
- | | | **modulefile** : ADF/ | ||
- | |||
- | |||
- | Pour utiliser les modulefiles, | ||
- | |||
- | ===== Exemples ===== | ||
- | |||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | #$ -S /bin/bash | ||
- | #$ -N adf2016.103 | ||
- | #$ -q E5-2670deb128A | ||
- | #$ -pe mpi16_debian 16 | ||
- | #$ -cwd | ||
- | #$ -V | ||
- | |||
- | # env first | ||
- | source / | ||
- | module use / | ||
- | module load Base/psmn | ||
- | module load ADF/ | ||
- | export SCMLICENCE=/ | ||
- | # without CUDA support, change to TRUE when using cuda-enabled adf | ||
- | export SCM_GPUENABLED=" | ||
- | |||
- | DATADIR=${SGE_O_WORKDIR} | ||
- | export SCM_TMPDIR=${SGE_O_WORKDIR} | ||
- | # or use /scratch for scratchdir | ||
- | #export SCM_TMPDIR=/ | ||
- | |||
- | # declaration used by the batch system | ||
- | HOSTFILE=$TMPDIR/ | ||
- | export SCM_MACHINEFILE=$TMPDIR/ | ||
- | export NSCM=$NSLOTS | ||
- | export ADFRESOURCES=$HOME/ | ||
- | # | ||
- | cd ${DATADIR} | ||
- | # debug | ||
- | #env | ||
- | #ldd ${ADFBIN}/ | ||
- | #which mpirun | ||
- | # | ||
- | ${ADFBIN}/ | ||
- | |||
- | # | ||
- | </ | ||
- | |||
- | |||
- | {{INLINETOC}} |