Univa Grid Engine (UGE) is a batch-queue system used to run some jobs on the CoE HPC cluster.  It has limited resources and is currently restricted to nodes used for Ansys jobs. Jobs must be submitted from one of the following submit hosts:

submit-a.hpc.engr.oregonstate.edu

submit-b.hpc.engr.oregonstate.edu

submit-c.hpc.engr.oregonstate.edu

Some sample UGE commands are listed below.

To start an interactive node on the cluster, type:

qrsh

To submit a batch job to the cluster, type:

qsub myBatchFile.sh

To view the status of jobs in the queue, type:

qstat

Here is a sample batch submission script:

===START

#!/bin/bash

#$ -N helloWorld				# name of job

#$ -cwd							# use current work directory

#$ -q share,share2,share3		# queue or comma separated list of queues

#$ -o helloWorld.out			# name of output file for this submission script

#$ -e helloWorld.err			# name of error file for this submission script

#$ -m bea						# send email when job begins, ends or aborts

#$ -M myONID@oregonstate.edu	# send email to this address

/path/to/my/app/executable

===END

 

For more information on these commands or UGE directives, see the man page, e.g. type: 

man qsub

man qstat