On Fri, Sep 11, 2009 at 5:25 AM, David Cournapeau
wrote:
> V. Armando Solé wrote:
>> David Cournapeau wrote:
>>
>>> V. Armando Solé wrote:
>>>
>>>
Hello,
It seems to point towards a packaging problem.
In python 2.5, I can do:
import numpy.core._dotblas as dotblas
V. Armando Solé wrote:
> David Cournapeau wrote:
>
>> V. Armando Solé wrote:
>>
>>
>>> Hello,
>>>
>>> It seems to point towards a packaging problem.
>>>
>>> In python 2.5, I can do:
>>>
>>> import numpy.core._dotblas as dotblas
>>> dotblas.__file__
>>>
>>> and I get:
>>>
>>> C:\\Python25
David Cournapeau wrote:
> V. Armando Solé wrote:
>
>> Hello,
>>
>> It seems to point towards a packaging problem.
>>
>> In python 2.5, I can do:
>>
>> import numpy.core._dotblas as dotblas
>> dotblas.__file__
>>
>> and I get:
>>
>> C:\\Python25\\lib\\site-packages\\numpy\\core\\_dotblas.pyd
>>
Sturla Molden wrote:
> V. Armando Solé skrev:
>
>> In python 2.6:
>>
>> >>>import numpy.core._dotblas as dotblas
>> ...
>> ImportError: No module named _dotblas
>>
>>
>
> >>> import numpy.core._dotblas as dotblas
> >>> dotblas.__file__
> 'C:\\Python26\\lib\\site-packages\\numpy\\core\
V. Armando Solé skrev:
> In python 2.6:
>
> >>>import numpy.core._dotblas as dotblas
> ...
> ImportError: No module named _dotblas
>
>>> import numpy.core._dotblas as dotblas
>>> dotblas.__file__
'C:\\Python26\\lib\\site-packages\\numpy\\core\\_dotblas.pyd'
___
V. Armando Solé wrote:
> Hello,
>
> It seems to point towards a packaging problem.
>
> In python 2.5, I can do:
>
> import numpy.core._dotblas as dotblas
> dotblas.__file__
>
> and I get:
>
> C:\\Python25\\lib\\site-packages\\numpy\\core\\_dotblas.pyd
>
That's where the error lies: if you insta
V. Armando Solé skrev:
> import numpy
> import time
> a=numpy.arange(100.)
> a.shape=1000,1000
> t0=time.time()
> b=numpy.dot(a.T,a)
> print "Elapsed time = ",time.time()-t0
>
> reports an "Elapsed time" of 1.4 seconds under python 2.5 and 15 seconds
> under python 2.6
>
My computer reports
Hello,
It seems to point towards a packaging problem.
In python 2.5, I can do:
import numpy.core._dotblas as dotblas
dotblas.__file__
and I get:
C:\\Python25\\lib\\site-packages\\numpy\\core\\_dotblas.pyd
In python 2.6:
>>>import numpy.core._dotblas as dotblas
...
ImportError: No module nam
David Cournapeau wrote:
> V. Armando Solé wrote:
>
>> Hello,
>>
>> I have found performance problems under windows when using python 2.6
>> In my case, they seem to be related to the dot product.
>>
>> The following simple script:
>>
>> import numpy
>> import time
>> a=numpy.arange(100.)
>>
V. Armando Solé wrote:
> Hello,
>
> I have found performance problems under windows when using python 2.6
> In my case, they seem to be related to the dot product.
>
> The following simple script:
>
> import numpy
> import time
> a=numpy.arange(100.)
> a.shape=1000,1000
> t0=time.time()
> b=num
Hello,
I have found performance problems under windows when using python 2.6
In my case, they seem to be related to the dot product.
The following simple script:
import numpy
import time
a=numpy.arange(100.)
a.shape=1000,1000
t0=time.time()
b=numpy.dot(a.T,a)
print "Elapsed time = ",time.tim
11 matches
Mail list logo