Skip to content

Instantly share code, notes, and snippets.

@nickgian
Created December 4, 2012 16:31
Show Gist options
  • Save nickgian/4205844 to your computer and use it in GitHub Desktop.
Save nickgian/4205844 to your computer and use it in GitHub Desktop.
#!/bin/bash
## Give the Job a descriptive name
#PBS -N makeall
## Output and error files
#PBS -o makejob.out
#PBS -e makejob.err
## How many machines should we get?
#PBS -l nodes=1
## Start
## Run make in the src folder (modify properly)
cd /home/parallel/parlab06/lab1/serial/
make
cd /home/parallel/parlab06/lab1/omp/
make
cd /home/parallel/parlab06/lab1/ptp/cycle/
make
cd /home/parallel/parlab06/lab1/ptp/continuous/
make
cd /home/parallel/parlab06/lab1/broadcast/cycle/
make
cd /home/parallel/parlab06/lab1/broadcast/continuous/
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment