Re: [pypy-dev] NumPyPy test - array creation slow

2012-02-27 Thread Maciej Fijalkowski
On Mon, Feb 27, 2012 at 7:48 AM, Carl Friedrich Bolz wrote: > Hi Mike, > > > On 02/27/2012 04:31 PM, Mike Müller wrote: >> I just tested NumPyPy a bit. I got very long run times >> for some tests. After some profiling, I identified the >> array constructor as the main time sink. > > I opened an is

Re: [pypy-dev] NumPyPy test - array creation slow

2012-02-27 Thread Carl Friedrich Bolz
Hi Mike, On 02/27/2012 04:31 PM, Mike Müller wrote: > I just tested NumPyPy a bit. I got very long run times > for some tests. After some profiling, I identified the > array constructor as the main time sink. I opened an issue so that it doesn't get lost: https://bugs.pypy.org/issue1074 Cheers

[pypy-dev] NumPyPy test - array creation slow

2012-02-27 Thread Mike Müller
Hi, I just tested NumPyPy a bit. I got very long run times for some tests. After some profiling, I identified the array constructor as the main time sink. This is a small example that makes the point. import cProfile try: import numpy except ImportError: import numpypy as numpy def te