Re: [Numpy-discussion] Scientific Computing with Python, September 18, 2009

2009-09-12 Thread Skipper Seabold
On Fri, Sep 11, 2009 at 7:26 PM, Robert Ferrell wrote: > > > On Sep 11, 2009, at 5:07 PM, Neal Becker wrote: > >> I'd love to participate in these webinars.  Problem is, AFAICT, >> gotomeeting >> only supports windows. > > I'm not certain that is correct.  I've participated in some of these, > and

Re: [Numpy-discussion] Error in header file - wrong mailing list?

2009-09-12 Thread Pauli Virtanen
su, 2009-09-13 kello 01:47 +0300, Pauli Virtanen kirjoitti: [clip] > The error you get from the comma at the end of the enum must be because > you have > > -pedantic -Werror > > in your CFLAGS. Just > > unset CFLAGS > > or so before compilation. Yes, comma at the end of enum l

Re: [Numpy-discussion] Error in header file - wrong mailing list?

2009-09-12 Thread Pauli Virtanen
la, 2009-09-12 kello 23:57 +0200, Mads Ipsen kirjoitti: > Hey, > > I recently posted a bug related to a compile error in the header file > 'npy_common.h' but have received no responses so far. > > Am I posting this in the wrong mailing list? It is the correct list, but in general bug reports ar

[Numpy-discussion] Error in header file - wrong mailing list?

2009-09-12 Thread Mads Ipsen
Hey, I recently posted a bug related to a compile error in the header file 'npy_common.h' but have received no responses so far. Am I posting this in the wrong mailing list? Best regards, Mads -- ++ | Mads Ipsen, Scientific develope

Re: [Numpy-discussion] 64-bit Fedora 9 a=numpy.zeros(0x80000000, dtype='b1')

2009-09-12 Thread Charles R Harris
On Sat, Sep 12, 2009 at 9:47 AM, Citi, Luca wrote: > Python shouldn't be the problem here. > Even on a 32bit machine > >>> a = 0x8000 > 2147483648L > >>> a=np.zeros(a, dtype=bool) > ValueError: negative dimensions are not allowed > ___ > NumPy-Disc

Re: [Numpy-discussion] 64-bit Fedora 9 a=numpy.zeros(0x80000000, dtype='b1')

2009-09-12 Thread Citi, Luca
Python shouldn't be the problem here. Even on a 32bit machine >>> a = 0x8000 2147483648L >>> a=np.zeros(a, dtype=bool) ValueError: negative dimensions are not allowed ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/m

Re: [Numpy-discussion] 64-bit Fedora 9 a=numpy.zeros(0x80000000, dtype='b1')

2009-09-12 Thread Charles R Harris
On Sat, Sep 12, 2009 at 9:03 AM, Citi, Luca wrote: > I just realized that Sebastian posted its 'uname -a' and he has a 64bit > machine. > In this case it should work as mine (the 64bit one) does. > Maybe during the compilation some flags prevented a full 64bit code to be > compiled? > __ > Ints

Re: [Numpy-discussion] 64-bit Fedora 9 a=numpy.zeros(0x80000000, dtype='b1')

2009-09-12 Thread Citi, Luca
I just realized that Sebastian posted its 'uname -a' and he has a 64bit machine. In this case it should work as mine (the 64bit one) does. Maybe during the compilation some flags prevented a full 64bit code to be compiled? ___ NumPy-Discussion mailing li

Re: [Numpy-discussion] 64-bit Fedora 9 a=numpy.zeros(0x80000000, dtype='b1')

2009-09-12 Thread Charles R Harris
On Fri, Sep 11, 2009 at 2:22 PM, Sebastian wrote: > Hello, > > The folks at stsci (Jim T.) are not able to reproduce this error with > 1.4.0.dev7362 so I guess there is something wrong with my numpy > installation. > I also tried '1.4.0.dev7362' and numpy1.3 (stable) but alas, the same > error! >

Re: [Numpy-discussion] 64-bit Fedora 9 a=numpy.zeros(0x80000000, dtype='b1')

2009-09-12 Thread Citi, Luca
Hi, with the standard ubuntu version (1.2.1), I get >>> a=np.zeros(0x80,dtype='b1') # OK >>> a=np.zeros(0x8000,dtype='b1') TypeError: data type not understood >>> a=np.zeros(0x8000,dtype=bool) ValueError: negative dimensions are not allowed while with 1.4.0.dev7375, I get >>> a=np