Difference between revisions of "Rocky Slurm Basic Multi"

From NIMBioS
(Created page with "= About = = myscript.sh = <pre> #!/bin/bash H=`hostname -s` C=`ps -o cpuid -h -p ${BASHPID} | xargs` echo "${H} (${C})" </pre> For example purposes, we'll use a simple bash script. It's only purpose is to output the hostname of the node we're on and the cpuid the script is running. This will help illustrate that our script is being run on multiple nodes and/or multiple cores on each node.")
 
Line 1: Line 1:
= About =
= About =
In these examples, you'll see how to use SBATCH parameters to take advantage of multiple nodes and multiple cores on those nodes.


= myscript.sh =
= myscript.sh =

Revision as of 20:51, 25 August 2022

About

In these examples, you'll see how to use SBATCH parameters to take advantage of multiple nodes and multiple cores on those nodes.

myscript.sh

#!/bin/bash

H=`hostname -s`
C=`ps -o cpuid -h -p ${BASHPID} | xargs`

echo "${H} (${C})"

For example purposes, we'll use a simple bash script. It's only purpose is to output the hostname of the node we're on and the cpuid the script is running. This will help illustrate that our script is being run on multiple nodes and/or multiple cores on each node.