Re: [Numpy-discussion] MKL Path error on Cygwin after installing on windows.

2009-06-23 Thread Sandeep Devadas
Hi David, On Mon, Jun 22, 2009 at 7:03 PM, David Cournapeau da...@ar.media.kyoto-u.ac.jp wrote: Hi Sandeep, Sandeep Devadas wrote: Hello There, My name is Sandeep Devadas and im trying to install numpy for python on Cygwins latest version(1.5.xx) on Windows XP.I'm

Re: [Numpy-discussion] MKL Path error on Cygwin after installing on windows.

2009-06-23 Thread David Cournapeau
Sandeep Devadas wrote: Hi David, On Mon, Jun 22, 2009 at 7:03 PM, David Cournapeau da...@ar.media.kyoto-u.ac.jp mailto:da...@ar.media.kyoto-u.ac.jp wrote: Hi Sandeep, Sandeep Devadas wrote: Hello There, My name is Sandeep Devadas and im trying to

Re: [Numpy-discussion] MKL Path error on Cygwin after installing on windows.

2009-06-23 Thread Sandeep Devadas
How do I install numpy for cygwin under windows? On Tue, Jun 23, 2009 at 2:18 PM, David Cournapeau da...@ar.media.kyoto-u.ac.jp wrote: Sandeep Devadas wrote: Hi David, On Mon, Jun 22, 2009 at 7:03 PM, David Cournapeau da...@ar.media.kyoto-u.ac.jp mailto:da...@ar.media.kyoto-u.ac.jp

Re: [Numpy-discussion] MKL Path error on Cygwin after installing on windows.

2009-06-23 Thread Sandeep Devadas
Hi, I got numpy working on Python under cygwin and am getting this error . Please let me know what to do as I am new to Python and dont know anything. $ python Python 2.5.2 (r252:60911, Dec 2 2008, 09:26:14) [GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin Type help,

Re: [Numpy-discussion] ANN: HDF5 for Python (h5py) 1.2

2009-06-23 Thread V. Armando Solé
Dear Andrew, I have succeeded on generating a win32 binary installer for python 2.6. Running depends on the installed libraries it shows there are no dependencies on other libraries than those of VS2008. I have tried to send it to you directly but I am not sure if your mail address accepts

[Numpy-discussion] Efficient ?axpy operation without copy (B += a*A)

2009-06-23 Thread Michael McNeil Forbes
Hi, Is there a way of performing vectorized ?axpy (daxpy) operations without making copies or dropping into C? i.e: I want to do big = (1,5000) A = np.ones(big,dtype=float) B = np.ones(big,dtype=float) a = 1.5 B += a*A without making any copies? (I know I could go A *= a B += A A /= a

Re: [Numpy-discussion] Help using numpy.distutils.fcompiler for my GSoC project

2009-06-23 Thread Lisandro Dalcin
On Mon, Jun 22, 2009 at 11:53 PM, Kurt Smithkwmsm...@gmail.com wrote: Hello, Is there a way for numpy.distutils to compile a fortran source file into an executable? If the whole point of building the executable is to run it in order to parse the output, then you can start with this: $ cat

Re: [Numpy-discussion] Efficient ?axpy operation without copy (B += a*A)

2009-06-23 Thread Pauli Virtanen
On 2009-06-23, Michael McNeil Forbes mfor...@physics.ubc.ca wrote: Is there a way of performing vectorized ?axpy (daxpy) operations without making copies or dropping into C? i.e: I want to do big = (1,5000) A = np.ones(big,dtype=float) B = np.ones(big,dtype=float) a = 1.5 B += a*A

[Numpy-discussion] ANN: PyTables 2.2b1 ready for testing

2009-06-23 Thread Francesc Alted
Hi, This is for inform you about the first beta release for PyTables 2.2. You will find there some interesting new features, but no question that the most appealing one is the new `tables.Expr` class. You can think about it as powerful evaluator for generic mathematical expressions of NumPy

Re: [Numpy-discussion] Help using numpy.distutils.fcompiler for my GSoC project

2009-06-23 Thread Kurt Smith
On Tue, Jun 23, 2009 at 1:41 PM, Lisandro Dalcindalc...@gmail.com wrote: On Mon, Jun 22, 2009 at 11:53 PM, Kurt Smithkwmsm...@gmail.com wrote: Hello, Is there a way for numpy.distutils to compile a fortran source file into an executable? If the whole point of building the executable is to

Re: [Numpy-discussion] Efficient ?axpy operation without copy (B += a*A)

2009-06-23 Thread Michael McNeil Forbes
Thanks Pauli, On 23 Jun 2009, at 12:46 PM, Pauli Virtanen wrote: from scipy.lib.blas import get_blas_funcs axpy, = get_blas_funcs(['axpy'], [A, B]) res = axpy(A.ravel(), B.ravel(), A.size, a) res.base is B ... Works provided A and B are initially in C-order so that ravel() doesn't create

Re: [Numpy-discussion] Help using numpy.distutils.fcompiler for my GSoC project

2009-06-23 Thread David Cournapeau
On Wed, Jun 24, 2009 at 3:41 AM, Lisandro Dalcindalc...@gmail.com wrote: On Mon, Jun 22, 2009 at 11:53 PM, Kurt Smithkwmsm...@gmail.com wrote: Hello, Is there a way for numpy.distutils to compile a fortran source file into an executable? If the whole point of building the executable is to

Re: [Numpy-discussion] MKL Path error on Cygwin after installing on windows.

2009-06-23 Thread David Cournapeau
Sandeep Devadas wrote: Hi, I got numpy working on Python under cygwin and am getting this error . Please let me know what to do as I am new to Python and dont know anything. $ python Python 2.5.2 (r252:60911, Dec 2 2008, 09:26:14) [GCC 3.4.4 (cygming special, gdc 0.12, using