Actions
Feature #2979
closedsun grid engine (SGE) support
Start date:
11/19/2014
Due date:
% Done:
0%
Estimated time:
Description
support for sun grid engine scheduler for Salk cluster
Updated by Dmitry Lyumkis almost 10 years ago
- Status changed from Assigned to In Code Review
- Assignee changed from Dmitry Lyumkis to Sargis Dallakyan
Updated by Sargis Dallakyan almost 10 years ago
- Status changed from In Code Review to In Test
- Assignee changed from Sargis Dallakyan to Dmitry Lyumkis
Looks good. I have found this page that's very usefull for TORQUE to SGE command conversion - https://kb.iu.edu/d/avgl
I've copied their conversion table below using http://www.joecullin.com/data_converter/ to convert html table to Redmine table.
TORQUE command | SGE command | |
---|---|---|
Queue | #PBS -q [queue] | #$ -q [queue] |
Nodes | #PBS -l nodes=[#] | n/a |
Processors | #PBS -l ppn=[#] | #$ -pe ompi [#] |
Wall clock limit | #PBS -l walltime=[hh:mm:ss] | #$ -l time=[hh:mm:ss] |
Standard output file | #PBS -o [file] | #$ -o [path] |
Standard error | #PBS -e [file] | #$ -e [path] |
Copy environment | #PBS -V | #$ -V |
Notification event | #PBS -m abe | #$ -m abe |
Email address | #PBS -M [email] | #$ -M [email] |
Job name | #PBS -N [name] | #$ -N [name] |
Initial directory | n/a | #$ -wd [directory] |
Node usage | #PBS -l naccesspolicy=singlejob | n/a |
Memory requirement | #PBS -l mem=XXXXmb | #$ -mem [#]G |
This can be used later to add Queue, Nodes, Processors and Wall clock limit options in the future. As long as this works for sun grid engine scheduler for Salk cluster, it's a nice feature to have.
Updated by Anchi Cheng over 9 years ago
- Related to Feature #3000: support for SGE cluster type added
Actions