##// END OF EJS Templates
Delete all references to old IPython.external.guid...
Delete all references to old IPython.external.guid This reverts commit a36c8d5b0e660e57d2a3051d06670780c1e75c97, where uuid was replaced with guid. Signed-off-by: Thomas Spura <thomas.spura@gmail.com>

File last commit:

r4910:0dc49390
r5807:3ba61c59
Show More
task1.py
52 lines | 671 B | text/x-python | PythonLexer
# <nbformat>2</nbformat>
# <markdowncell>
# # Simple task farming example
# <codecell>
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()