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
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
>What numpy version?
1.8.1
___
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion
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
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
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]
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
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!