##// END OF EJS Templates
don't automatically add jobarray or queue lines to user template...
don't automatically add jobarray or queue lines to user template In parallel launchers, the queue and jobarray lines should not be added except in the default templates. user-templates must be fully specified. This prevents conflicts between PBS versions, which may not support jobarrays, etc. These lines are now only added to the *default* templates.

File last commit:

r3666:a6a0636a
r4183:965bc088
Show More
views.py
14 lines | 192 B | text/x-python | PythonLexer
MinRK
move IPython.zmq.parallel to IPython.parallel
r3666 from IPython.parallel import *
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
MinRK
updated newparallel examples, moved into docs
r3609 client = Client()
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
for id in client.ids:
MinRK
update API after sagedays29...
r3664 client[id].push(dict(ids=id*id))
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
MinRK
update API after sagedays29...
r3664 v = client[0]
v['a'] = 5
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
MinRK
update API after sagedays29...
r3664 print v['a']
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
remotes = client[:]
print remotes['ids']