Skip to content

Appname

Appname is a ...

Appname is available as a module on Apocrita.

Versions

Usage

To run the default version of appname, simply load the modulename module:

module load appname
appname --help

For full usage documentation, run appname --help.

Licensing

Example jobs

Serial job

Here is an example job running on 4 cores and 8GB of memory:

#!/bin/bash
#$ -cwd
#$ -j y
#$ -pe smp 4
#$ -l h_rt=1:0:0
#$ -l h_vmem=2G

module load appname

export VARS

appname params

Parallel job

Here is an example job running on 96 cores across 2 ddy nodes with MPI:

#!/bin/bash
#$ -cwd
#$ -j y
#$ -pe parallel 96
#$ -l infiniband=ddy-i
#$ -l h_rt=240:0:0

module load appname

export VARS

appname params

GPU job

Here is an example job running on 1 GPU:

#!/bin/bash
#$ -cwd
#$ -j y
#$ -pe smp 8
#$ -l h_rt=240:0:0
#$ -l h_vmem=11G
#$ -l gpu=1

module load appname

export VARS

appname params

Installing packages / plugins / addons

References