Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 57be511

Browse files
committedMar 13, 2012
doc: updated documentation related to node specific arguments
1 parent 6ae0083 commit 57be511

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed
 

‎CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changes since 0.5
22
=================
33

4-
None
4+
* API: Node now allows specifying node level configuration for SGE/PBS clusters
55

66
Release 0.5 (Mar 10, 2012)
77
==========================

‎doc/users/plugins.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,22 @@ a custom template::
115115
workflow.run(plugin='SGE',
116116
plugin_args=dict(template='mytemplate.sh', qsub_args='-q myqueue')
117117

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+
118134
Condor
119135
------
120136

0 commit comments

Comments
 (0)
Please sign in to comment.