##// END OF EJS Templates
Option to spew subprocess streams during tests...
Option to spew subprocess streams during tests This supersedes PR #4268. Run the tests with '--subproc-streams show' to show output from subprocesses (kernels, IPython.parallel components) in the terminal, or with '--subproc-streams discard' to send it to /dev/null. By default (or with '--subproc-streams capture') the output is piped, captured and displayed only when tests fail. But in some situations, a test fails because of an error which actually occurred earlier, so you have to see all the output.

File last commit:

r9190:20a102a5
r13824:d77e2f51
Show More
task1.py
53 lines | 710 B | text/x-python | PythonLexer
# <nbformat>2</nbformat>
# <markdowncell>
# # Simple task farming example
# <codecell>
from __future__ import print_function
from IPython.parallel import Client
# <markdowncell>
# A `Client.load_balanced_view` is used to get the object used for working with load balanced tasks.
# <codecell>
rc = Client()
v = rc.load_balanced_view()
# <markdowncell>
# Set the variable `d` on all engines:
# <codecell>
rc[:]['d'] = 30
# <markdowncell>
# Define a function that will be our task:
# <codecell>
def task(a):
return a, 10*d, a*10*d
# <markdowncell>
# Run the task once:
# <codecell>
ar = v.apply(task, 5)
# <markdowncell>
# Print the results:
# <codecell>
print("a, b, c: ", ar.get())