Hi Sean, On Fri, Jul 5, 2013 at 8:30 PM, Sean Fisk <[email protected]> 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't support multithreading any more than CPython and PyPy: it relies on the GIL to avoid crashing, including (but not limited to) everything related to the GC. The best you can do is dividing the problem among multiple processes. A bientôt, Armin. _______________________________________________ pypy-dev mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-dev
