##// END OF EJS Templates
newparallel tweaks, fixes...
newparallel tweaks, fixes * warning on unregistered engine * Python LRU scheduler is now default * Client registration includes task scheme * Fix typos associated with some renaming * fix demo links * warning typo

File last commit:

r3609:8d078bcc
r3622:86f3ca88
Show More
views.py
14 lines | 217 B | text/x-python | PythonLexer
from IPython.zmq.parallel.client import *
client = Client()
for id in client.ids:
client.push(dict(ids=id*id), targets=id)
rns = client[0]
rns['a'] = 5
print rns['a']
remotes = client[:]
print remotes['ids']