On Tue, 2014-04-15 at 00:16 -0700, Gayathri Jayaraman wrote:
>
> I have cython code and have implemented the dot function (the
> bottleneck) in cython. But am not able to get sufficient speed ups. So
> thought will port the cython to pypy for more speedups?
I doubt so; the binary extensions generated via Cython will run under
PyPy at the same speed as under CPython or slower.
If you want to take advantage of PyPy's JIT, run your Python
implementation of 'dot' (whatever it is) under PyPy and look into how
you can make it more JIT-friendly.
> u have alternate links
https://github.com/cython/cython/blob/master/docs/src/userguide/pypy.rst
--
Sincerely yours,
Yury V. Zaytsev