Re: [Numpy-discussion] Debug memory block at address p=0x2ba5928: API 'm'

2011-09-22 Thread Sandro Tosi
On Thu, Sep 22, 2011 at 21:49, Bruce Southey wrote: > All that I can tell you is that this is Ticket 1578: > http://projects.scipy.org/numpy/ticket/1578 Ah, I could have probably checked it before sending this email, but now that webpage gives me 500 - it's spreading! :) -- Sandro Tosi (aka mor

Re: [Numpy-discussion] Debug memory block at address p=0x2ba5928: API 'm'

2011-09-22 Thread Bruce Southey
On 09/22/2011 02:44 PM, Sandro Tosi wrote: > Hello, > I'm running tests for numpy 1.6.1 on 2.7 -dbg flavor and I got this: > > .Debug memory block at address p=0x2ba5928: API 'm' > 8 bytes originally requested > The 7 pad bytes at p-7 are FORBIDDENBYTE, as expected

[Numpy-discussion] Debug memory block at address p=0x2ba5928: API 'm'

2011-09-22 Thread Sandro Tosi
Hello, I'm running tests for numpy 1.6.1 on 2.7 -dbg flavor and I got this: .Debug memory block at address p=0x2ba5928: API 'm' 8 bytes originally requested The 7 pad bytes at p-7 are FORBIDDENBYTE, as expected. The 8 pad bytes at tail=0x2ba5930 are FORBIDDENBYT

Re: [Numpy-discussion] ImportError: libptf77blas.so.3: cannot open shared object file: No such file or directory

2011-09-22 Thread Pauli Virtanen
Hi, Thu, 22 Sep 2011 13:09:51 +0200, Marijn Verkerk wrote: [clip] > ImportError: libptf77blas.so.3: cannot open shared object file: No such > file or directory > > In the __config.py file the folder where libptf77 should be is present. > > Any suggestions? You need to make the dynamic linker ab

[Numpy-discussion] ImportError: libptf77blas.so.3: cannot open shared object file: No such file or directory

2011-09-22 Thread Marijn Verkerk
Dear all, Maybe someone has experienced this problem before. I was able to build and install numpy in a seperate python 2.7 folder on our cluster. When I try to import numpy I get the following error: $ /software/Python-2.7.2/bin/python -c 'import numpy; numpy.test()' Traceback (most recent ca

Re: [Numpy-discussion] Fancy indexing with masks

2011-09-22 Thread Pauli Virtanen
Thu, 22 Sep 2011 08:12:12 +0200, Han Genuit wrote: [clip] > I also noticed that it does strange things when using a list: > c[[True, False, True]] > array([[3, 4, 5], >[0, 1, 2], >[3, 4, 5]]) It casts the list with booleans to an integer array. Probably shouldn't work like t