Hi All,
I have tried to perform a CPU intensive operation ( which typically
involved calculation of prime numbers from 1-10 ) using Multi-process
and Multi-Thread models provided by
C, Python-2.6, PyPy-1.9.
Here are results that are obtained from this exercise;
*C Program results ( Number of
On 10/30/2012 11:19 AM, Sasikanth Eda wrote:
I have tried to perform a CPU intensive operation ( which typically
involved calculation of prime numbers from 1-10 ) using
Multi-process and Multi-Thread models provided by
C, Python-2.6, PyPy-1.9.
Note that your code is very slow. I can find
Hi,
On Tue, Oct 30, 2012 at 4:19 PM, Sasikanth Eda wrote:
> 1. Has PyPy optimized / reduced the GIL limitation ?
Not so far: PyPy has a GIL, similar to CPython. (Note that I'm
answering with "CPython" here to make it clearer; "Python" means the
language which both CPython and PyPy implement.)
On Tue, Oct 30, 2012 at 9:33 AM, David Ripton wrote:
> On 10/30/2012 11:19 AM, Sasikanth Eda wrote:
>
> I have tried to perform a CPU intensive operation ( which typically
>> involved calculation of prime numbers from 1-10 ) using
>> Multi-process and Multi-Thread models provided by
>> C, Py