[sympy] Re: parallel testing of sympy with ipython

2009-03-22 Thread Ondrej Certik
On Thu, Mar 19, 2009 at 1:13 PM, Brian Granger ellisonbg@gmail.com wrote: Ondrej, I need to take my kids somewhere but the answer to your question is *yes absolutely*, you can interact with a controller and engine running on a cluster somewhere from an ipython session on your laptop

[sympy] Re: parallel testing of sympy with ipython

2009-03-19 Thread Ondrej Certik
Now some thoughts about load balancing: [...] And finally I collect the results: http://github.com/certik/sympy/blob/55de47b6f0a7bee01249fc24c03e5567695c4569/t.py#L69 and report the results to the user. This should of course be I forgot to ask the question: how could this be made more

[sympy] Re: parallel testing of sympy with ipython

2009-03-19 Thread Ondrej Certik
On Thu, Mar 19, 2009 at 12:56 AM, Ondrej Certik ond...@certik.cz wrote: [...] I forgot to ask the question: how could this be made more efficient using some native ipython parrallel tools? And last question: Currently all the engines must be able to import sympy and I noticed it is not

[sympy] Re: parallel testing of sympy with ipython

2009-03-19 Thread Fredrik Johansson
On Thu, Mar 19, 2009 at 8:52 AM, Ondrej Certik ond...@certik.cz wrote: All tests pass, except 4 mpmath tests, but I suspect it could be some bug in mpmath. I suspect this is just due to tests being run out of the expected order. Probably, adding mp.dps = 15 at the top of each failing test will

[sympy] Re: parallel testing of sympy with ipython

2009-03-19 Thread Ondrej Certik
On Thu, Mar 19, 2009 at 1:27 AM, Fredrik Johansson fredrik.johans...@gmail.com wrote: On Thu, Mar 19, 2009 at 8:52 AM, Ondrej Certik ond...@certik.cz wrote: All tests pass, except 4 mpmath tests, but I suspect it could be some bug in mpmath. I suspect this is just due to tests being run out

[sympy] Re: parallel testing of sympy with ipython

2009-03-19 Thread Vinzent Steinberg
On Mar 19, 9:09 am, Ondrej Certik ond...@certik.cz wrote: On Thu, Mar 19, 2009 at 12:56 AM, Ondrej Certik ond...@certik.cz wrote: [...] I forgot to ask the question: how could this be made more efficient using some native ipython parrallel tools? And last question: Currently all

[sympy] Re: parallel testing of sympy with ipython

2009-03-19 Thread Ondrej Certik
And what about a big cluster --- wouldn't it be handy to just tell ipython: take this library and make it available on the engines, without me requiring to install it manually and then restarting the ipcluster? You can tell Python to import/reload a module using an explicit path, for