Re: [pypy-dev] Numpy on PyPy : cpyext

2017-03-03 Thread Singh, Yashwardhan
Subject: Re: [pypy-dev] Numpy on PyPy : cpyext Hi Yash Is your software open source? I'm happy to check it out for you I think the c-level profiling for vmprof is relatively new, you would need to use pypy nightly in order to get that level of insight. Additionally, we're working

Re: [pypy-dev] Numpy on PyPy : cpyext

2017-03-03 Thread Maciej Fijalkowski
Hi Yash Is your software open source? I'm happy to check it out for you I think the c-level profiling for vmprof is relatively new, you would need to use pypy nightly in order to get that level of insight. Additionally, we're working on cpyext improvements *right now* stay tuned. If there is a g

[pypy-dev] Numpy on PyPy : cpyext

2017-03-02 Thread Singh, Yashwardhan
Hi Everyone, I am using numpy on pypy to train a deep neural network. For my workload numpy on pypy is taking twice the time to train as numpy on Cpython. I am using Numpy via cpyext. I read in the documentation, "Performance-wise, the speed is mostly the same as CPython's NumPy (it is the sam

Re: [pypy-dev] Numpy on pypy

2014-06-12 Thread Armin Rigo
Hi, On 11 June 2014 07:32, Gayathri J wrote: > I am trying to do a matrix dot using numpy.dot > > the numpy.dot on pypy seems lot slower than bumpy.do on python > is there an alternative to using numpy.dot - so that i can do matrix.dot on > pypy faster than cpython For reference, I think you

[pypy-dev] Numpy on pypy

2014-06-10 Thread Gayathri J
Hi I am trying to do a matrix dot using numpy.dot the numpy.dot on pypy seems lot slower than bumpy.do on python is there an alternative to using numpy.dot - so that i can do matrix.dot on pypy faster than cpython suggestions would be very helpful thanks Gayathri ___