Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NCI-data-analysis module enables executing Rmpi scripts across multiple worker nodes at Gadi. The current verision version of Rmpi in NCI-data-analysis/222022.06 module is v0.6-9.2. 

Gadi

...

#!/bin/bash
 
#PBS -l ncpus=4
#PBS -l mem=16GB
#PBS -l jobfs=20GB
#PBS -q normal
#PBS -P a00
#PBS -l walltime=00:30:00
#PBS -l storage=gdata/dk92+gdata/a00+scratch/a00
#PBS -l wd

module use /g/data/dk92/apps/Modules/modulefiles
module load NCI-data-analysis/222022.06

mpirun -np 1 Rscript Rmpi_test.R >& output.log

...