Cbb/Baobab

From Computer Science Wiki
Revision as of 13:10, 30 October 2014 by Rhunter (talk | contribs) (Created page with "The Baobab Cluster CBB's internal cluster. The new cluster is made up of 6 nodes with 24 cores and 64 GB RAM on each node. To submit your jobs you need a PBS submission scr...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The Baobab Cluster

CBB's internal cluster.

The new cluster is made up of 6 nodes with 24 cores and 64 GB RAM on each node.

To submit your jobs you need a PBS submission script

Example PBS script:

#PBS -l nodes=1:ppn=24
#PBS -l walltime=00:01:00
echo "Job Started at: `date`"
module add openmpi-x86_64
cd ~/z_mpi
##mpiexec -n 24 hello
mpirun hello
echo "Job Ended at: `date`"