|
See issue 1630, we should be 1.5 times slower on the latest version
(2.3.1) https://bitbucket.org/pypy/pypy/issue/1630 We do have plans for being faster, but it will take a while to get there. Note that your pre-allocation of c is not used by a.dot(b), you probably want to do a.dot(b, out=c), which does not actually save much time but seems to be more what you were trying to do. Matti On 11/06/2014 7:07 PM, Gayathri J
wrote:
|
_______________________________________________ pypy-dev mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-dev
