-
Notifications
You must be signed in to change notification settings - Fork 4
qsub
Kevin Guay edited this page Apr 10, 2017
·
12 revisions
You can submit jobs without a submit script, but it can be more cumbersome.
Submit a simple job to the general routing queue (route)
qsub -q route -- /bin/sleep 10
Submit a job with the following parameters:
- Name: script-name
- Queue: route
- Walltime (runtime): 5 minutes
- cpus: 1
- error directory: /home/user/err
- output directory: /home/user/out
qsub -N script-name -V -q route -l walltime=00:00:05 -l select=1:ncpus=1 -e /home/user/err/ -o /home/user/out/ -- /bin/sleep 10