File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 1
1
Changes since 0.5
2
2
=================
3
3
4
- None
4
+ * API: Node now allows specifying node level configuration for SGE/PBS clusters
5
5
6
6
Release 0.5 (Mar 10, 2012)
7
7
==========================
Original file line number Diff line number Diff line change @@ -115,6 +115,22 @@ a custom template::
115
115
workflow.run(plugin='SGE',
116
116
plugin_args=dict(template='mytemplate.sh', qsub_args='-q myqueue')
117
117
118
+ In addition to overall workflow configuration, you can use node level
119
+ configuration for PBS/SGE::
120
+
121
+ node.plugin_args = {'qsub_args': '-l nodes=1:ppn=3'}
122
+
123
+ this would apply only to the node and is useful in situations, where a
124
+ particular node might use more resources than other nodes in a workflow.
125
+
126
+ .. note ::
127
+
128
+ Setting the keyword `overwrite ` would overwrite any global configuration with
129
+ this local configuration::
130
+
131
+ node.plugin_args = {'qsub_args': '-l nodes=1:ppn=3', 'overwrite': True}
132
+
133
+
118
134
Condor
119
135
------
120
136
You can’t perform that action at this time.
0 commit comments