Tagged Questions
0
votes
0answers
33 views
Can't use more than 3 CPUs in IPython for parallel computing
I have a 8 cpu server running a iPython Notebook server in Linux Ubuntu 12.04.1.
I'm trying to run a function in parallel asynchronously, using load balanced view, in a very similar way to the ...
0
votes
0answers
41 views
Printing to main stdout in IPython Notebook from other parallel engines
I am currently working in an IPython Notebook.
I am running a function across different engines and would like to see what it prints.
Example:
def simple(a):
print a+40;
return a+20
A = ...
2
votes
1answer
300 views
How to work with interactively-defined classes in IPython.parallel?
Context
In an interactive prototyping development on the notebook connected to a cluster, I would like to define a class that is both available in the client __main__ session and interactively update ...