##// END OF EJS Templates
Merge pull request #2346 from xeor/master...
Merge pull request #2346 from xeor/master Extra xterm identification in set_term_title Many times, xterm represent itself as "xterm-256color" instead of "xterm-color". This makes set_term_title not work at all. This is a simple patch to add everything that started with "xterm" to the list of TERM environments that should use the xterm way of changing the title.

File last commit:

r7739:dff285da
r8361:e93fd050 merge
Show More
task1.ipynb
139 lines | 2.5 KiB | text/plain | TextLexer

Simple task farming example

In [1]:
from IPython.parallel import Client

A Client.load_balanced_view is used to get the object used for working with load balanced tasks.

In [2]:
rc = Client()
v = rc.load_balanced_view()

Set the variable d on all engines:

In [3]:
rc[:]['d'] = 30

Define a function that will be our task:

In [4]:
def task(a):
    return a, 10*d, a*10*d

Run the task once:

In [5]:
ar = v.apply(task, 5)

Print the results:

In [6]:
print "a, b, c: ", ar.get()
a, b, c:  [5, 300, 1500]
In [ ]: