On Fri, Nov 27, 2009 at 4:57 AM, OkaMthembo <zebr...@gmail.com> wrote:
> Hi All,
>
> Is there a python implementation that takes advantage of all cores on modern
> multicore machines?

Presumably you mean something like, "Is there a python implementation
that can run multiple compute-bound processes on multiple cores
concurrently."

Some options:
- the multiprocessing module in the std lib - here is an example of
using it with numpy:
http://folk.uio.no/sturlamo/python/multiprocessing-tutorial.pdf

- Jython and IronPython both have threading models that allow multiple
threads to run concurrently on multiple processors.

Kent
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to