Re: [Numpy-discussion] Removal of Deprecated Keywords/functionality

2015-06-20 Thread Charles R Harris
On Sat, Jun 20, 2015 at 3:32 PM, Nathaniel Smith wrote: > On Jun 20, 2015 1:43 PM, "Charles R Harris" > wrote: > > > > Hi All, > > > > There are three long ago deprecations that I am not sure how to handle. > > > > keywords skiprows and missing in genfromtxt, deprecated in 1.5. > > keyword old_b

Re: [Numpy-discussion] Removal of Deprecated Keywords/functionality

2015-06-20 Thread Nathaniel Smith
On Jun 20, 2015 1:43 PM, "Charles R Harris" wrote: > > Hi All, > > There are three long ago deprecations that I am not sure how to handle. > > keywords skiprows and missing in genfromtxt, deprecated in 1.5. > keyword old_behavior (default False) in correlate. added in 1.5 at least, but default val

Re: [Numpy-discussion] I can't tell if Numpy is configured properly with show_config()

2015-06-20 Thread Elliot Hallmark
>What numpy version? 1.8.1 ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] I can't tell if Numpy is configured properly with show_config()

2015-06-20 Thread Charles R Harris
On Sat, Jun 20, 2015 at 2:08 PM, Elliot Hallmark wrote: > Sebastian, in the slow virtual-env, _dotblas.so isn't there. I only have > _dummy.so > > On Sat, Jun 20, 2015 at 3:02 PM, Elliot Hallmark > wrote: > >> Well, here is the question that started this all. In the slow >> environment, blas s

[Numpy-discussion] Removal of Deprecated Keywords/functionality

2015-06-20 Thread Charles R Harris
Hi All, There are three long ago deprecations that I am not sure how to handle. - keywords skiprows and missing in genfromtxt, deprecated in 1.5. - keyword old_behavior (default False) in correlate. added in 1.5 at least, but default value changed later. The documentation says they wil

Re: [Numpy-discussion] I can't tell if Numpy is configured properly with show_config()

2015-06-20 Thread Elliot Hallmark
Sebastian, in the slow virtual-env, _dotblas.so isn't there. I only have _dummy.so On Sat, Jun 20, 2015 at 3:02 PM, Elliot Hallmark wrote: > Well, here is the question that started this all. In the slow > environment, blas seems to be there and work well, but numpy doesn't use > it! > > In [1]

Re: [Numpy-discussion] I can't tell if Numpy is configured properly with show_config()

2015-06-20 Thread Elliot Hallmark
Well, here is the question that started this all. In the slow environment, blas seems to be there and work well, but numpy doesn't use it! In [1]: import time, numpy, scipy In [2]: from scipy import linalg In [3]: n=1000 In [4]: A = numpy.random.rand(n,n) In [5]: B = numpy.random.rand(n,n) I

Re: [Numpy-discussion] I can't tell if Numpy is configured properly with show_config()

2015-06-20 Thread Sebastian Berg
On Fr, 2015-06-19 at 16:19 -0500, Elliot Hallmark wrote: > Debian Sid, 64-bit. I was trying to fix the problem of np.dot running > very slow. > > > I ended up uninstalling numpy, installing libatlas3-base through > apt-get and re-installing numpy. The performance of dot is greatly > improved!