numarray indexing problems with Python2.5 and 64-bit platforms

Todd Miller jmiller at stsci.edu
Thu Nov 2 16:04:43 EST 2006


Here's a stab at a solution but I don't have easy access to 64-bit linux 
at the moment so it is untested.   If someone is willing to test it 
(and/or fix it) I'll add it to the next numarray release.  It should be 
noted that numarray is not 64-bit enabled (it compiles as a 32-bit 
program in terms of arrays) which is another motivation to switch to numpy.

Regards,
Todd

Francesc Altet wrote:
> Hi,
>
> I've detected that numarray (1.5.2) seems to be bitten by the change in
> Python 2.5 for indexes (http://docs.python.org/whatsnew/pep-353.html). 
> In a Linux64 machine (using Python 2.5), I get this:
>
>   
>>>> a=numarray.array([1,2,3])
>>>> a[1:2]
>>>>         
> array([1, 2])  # !
>
> However, both Numeric and numpy seems to work well with the same
> scenario.
>
>   
>>>> b=Numeric.array([1,2,3])
>>>> b[1:2]
>>>>         
> array([2])
>   
>>>> c=numpy.array([1,2])
>>>> c[1:2]
>>>>         
> array([2])
>
> I see this as a major issue in numarray and poses in great danger the
> intended support of PyTables for numarray that we planned for some time
> (until end of 2007). It would be nice to know if the numarray crew would
> be willing to address this, or, now that NumPy 1.0 is out, they have
> decided to completely drop the support for it.
>
> We'd really like to continue offering support for numarray (in the end,
> it is a very good piece of software) in PyTables, but don't having a
> solution for this problem anytime soon, will make this very problematic
> to us.
>
> Thanks,
>
>   

-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: slice64.patch
URL: <http://mail.python.org/pipermail/numpy-discussion/attachments/20061102/80bd33c4/attachment.ksh>
-------------- next part --------------
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
-------------- next part --------------
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion at lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion


More information about the NumPy-Discussion mailing list