Contents: [slideshow]

The Nature of a HPC System

Batch/Queue Systems: SGE

Running Parallel Jobs under SGE

GUIs and Qrsh

Filesystem Usage and Quotas

Practical Session




About this document

How do I run a job on a HPC machine?

Qsub Files 2/2

Example:

#!/bin/bash

#$ -S /bin/bash
#$ -cwd
#$ -q serial.q

export PATH=$PATH:/software/matlab/bin/
    #
    # ...set an ENVIRONMENT VARIABLE to ensure that the "matlab" 
    #    executable is on our "PATH"...

matlab < myinput.m


More:


...previousup (conts)next...