Re: [pypy-dev] Threading in RPython

2013-07-30 Thread Sean Fisk
On Tue, Jul 30, 2013 at 3:38 AM, Armin Rigo wrote: > Hi Sean, > > On Sun, Jul 7, 2013 at 10:23 PM, Sean Fisk wrote: > > Sorry, I didn't make it clear: my project is actually an interpreter for > a > > stencil-based language that is used for solving partial differential > > equations. So I think

Re: [pypy-dev] Threading in RPython

2013-07-30 Thread Armin Rigo
Hi Sean, On Sun, Jul 7, 2013 at 10:23 PM, Sean Fisk wrote: > Sorry, I didn't make it clear: my project is actually an interpreter for a > stencil-based language that is used for solving partial differential > equations. So I think that RPython is the right tool to an extent. It worked > very well

Re: [pypy-dev] Threading in RPython

2013-07-07 Thread Sean Fisk
Nathan and Armin: Thank you both for the advice! Sorry, I didn't make it clear: my project is actually an interpreter for a stencil-based language that is used for solving partial differential equations. So I think that RPython is

Re: [pypy-dev] Threading in RPython

2013-07-07 Thread Armin Rigo
Hi Sean, On Fri, Jul 5, 2013 at 11:17 PM, Armin Rigo wrote: > Sorry, RPython is the wrong tool. It doesn't support multithreading > (...) I've updated the FAQ entry here to try to explain a bit more precisely the reason and motivations for which we, the "core PyPy group" of people, keep answeri

Re: [pypy-dev] Threading in RPython

2013-07-05 Thread Nathan Hurst
On Fri, Jul 05, 2013 at 11:17:15PM +0200, Armin Rigo wrote: > Hi Sean, > > On Fri, Jul 5, 2013 at 8:30 PM, Sean Fisk wrote: > > For my internship, I am working on implementing a solver for partial > > differential equations in RPython. I am investigating the possibility of > > parallelizing the c

Re: [pypy-dev] Threading in RPython

2013-07-05 Thread Armin Rigo
Hi Sean, On Fri, Jul 5, 2013 at 8:30 PM, Sean Fisk wrote: > For my internship, I am working on implementing a solver for partial > differential equations in RPython. I am investigating the possibility of > parallelizing the code using multi-threading. Sorry, RPython is the wrong tool. It doesn'

[pypy-dev] Threading in RPython

2013-07-05 Thread Sean Fisk
Hello everyone, For my internship, I am working on implementing a solver for partial differential equations in RPython . I am investigating the possibility of paralleli