##// END OF EJS Templates
Merge pull request #2179 from dopplershift/pylab-switch...
Merge pull request #2179 from dopplershift/pylab-switch Enable switching %pylab mode between inline and a single gui mode in a single notebook. With this merge, `%pylab` can be called interactively to toggle inline/GUI (matplotlib floating windows) mode. After initializing `%pylab inline`, now one can call `%pylab` without arguments to activate the default GUI or ask for a specific one as usual. IPython will detect if a different GUI is requested if one was already activated and will refuse to do so (to prevent multiple event loops from running concurrently, which often leads to problems).

File last commit:

r6455:15863dc1
r8027:6dac6929 merge
Show More
task1.py
53 lines | 710 B | text/x-python | PythonLexer
Brian E. Granger
Reworking parallel examples as notebooks.
r4581 # <nbformat>2</nbformat>
# <markdowncell>
# # Simple task farming example
# <codecell>
Thomas Kluyver
Update print syntax in parallel examples.
r6455 from __future__ import print_function
Brian E. Granger
Reworking parallel examples as notebooks.
r4581
MinRK
translate last remaining old parallel examples
r3690 from IPython.parallel import Client
Brian E. Granger
Reworking parallel examples as notebooks.
r4581 # <markdowncell>
# A `Client.load_balanced_view` is used to get the object used for working with load balanced tasks.
# <codecell>
MinRK
translate last remaining old parallel examples
r3690 rc = Client()
v = rc.load_balanced_view()
Brian E. Granger
Reworking parallel examples as notebooks.
r4581 # <markdowncell>
# Set the variable `d` on all engines:
# <codecell>
MinRK
translate last remaining old parallel examples
r3690 rc[:]['d'] = 30
Brian E. Granger
Reworking parallel examples as notebooks.
r4581 # <markdowncell>
# Define a function that will be our task:
# <codecell>
MinRK
translate last remaining old parallel examples
r3690 def task(a):
return a, 10*d, a*10*d
Brian E. Granger
Reworking parallel examples as notebooks.
r4581 # <markdowncell>
# Run the task once:
# <codecell>
MinRK
translate last remaining old parallel examples
r3690 ar = v.apply(task, 5)
Brian E. Granger
Reworking parallel examples as notebooks.
r4581 # <markdowncell>
# Print the results:
# <codecell>
Thomas Kluyver
Update print syntax in parallel examples.
r6455 print("a, b, c: ", ar.get())
Brian E. Granger
Reworking parallel examples as notebooks.
r4581