Cluster computing, getting started

A few notes about using the research cluster to run lots of jobs. We have machines that are situated in both CS and in ECE, therefore you need an account in both CS and ECE. Please contact one of the faculty (Lebeck or Sorin) to get these accounts created and added to the group dukearch.

	# Example to submit 10 jobs of hello world
	foreach i (0 1 2 3 4 5 6 7 8 9)
   		qsub -cwd -N hello_$i run_hello
	end
	#
 	hello