Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jharjono
Created April 5, 2012 01:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jharjono/2307107 to your computer and use it in GitHub Desktop.
Save jharjono/2307107 to your computer and use it in GitHub Desktop.
Script to distribute training jobs to multiple nodes in a system and create a screen for each job
#!/bin/bash
# Script to distribute MATLAB training jobs to multiple nodes in a system and create a screen for each job
# some helpers, stolen shamelessly from internet forums
rand() {
printf $(( $1 * RANDOM / 32767 ))
}
rand_element () {
local -a th=("$@")
unset th[0]
printf $'%s\n' "${th[$(($(rand "${#th[*]}")+1))]}"
}
# Initialize settings
screenname=csc401-part3
A3_DIR="abs/path/to/your/A3/dir"
nodes="greywolf b3175-18" #etc etc use as many nodes as you wish
echo 'Creating screen session'
screen -d -m -S $screenname
echo 'Now creating screen windows'
# This is how you send a job to a node
m=1
q=2
for d in 3 4; do
for otherparam in 5 6; do
node=$(rand_element $nodes)
echo "Sending job m=$m q=$q d=$d op=$otherparam to $node"
screen -S $screenname -X screen -t "m=$m q=$q d=$d op=$otherparam" ssh $node "cd $A3_DIR && matlab -r 'M=$m; Q=$q; D=$d; someotherglobalvarformyscript=$otherparam; myAwesomeTrainingScript'"
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment