##// END OF EJS Templates
Merge pull request #2046 from jstenar/iptest-unicode...
Merge pull request #2046 from jstenar/iptest-unicode iptest unicode - fix space in path issue for iptest when using --with-xunit - fix unicode issue in path for iptest closes #760

File last commit:

r6035:3077781f
r7734:bb4488ab merge
Show More
helloworld.ipynb
91 lines | 1.8 KiB | text/plain | TextLexer

Distributed hello world

Originally by Ken Kinder (ken at kenkinder dom com)

In [1]:
from IPython.parallel import Client
In [2]:
rc = Client()
view = rc.load_balanced_view()
In [3]:
def sleep_and_echo(t, msg):
    import time
    time.sleep(t)
    return msg
In [4]:
world = view.apply_async(sleep_and_echo, 3, 'World!')
hello = view.apply_async(sleep_and_echo, 2, 'Hello')
In [5]:
print "Submitted tasks:", hello.msg_ids, world.msg_ids
print hello.get(), world.get()
Submitted tasks: ['dd1052e0-aa75-4b25-9d35-ecbdaf6e3ed7'] ['1b46aa21-20d1-459c-bc36-2d8d03336f74']
Hello
 World!