Re: [Numpy-discussion] GPU implementation?

2007-06-03 Thread Dave P. Novakovic
This may be of interest, LLVM support in Mesa, and i believe there is work doing on with LLVM and python in the pypy camp. http://zrusin.blogspot.com/2007/05/mesa-and-llvm.html I just stumbled on this page, while this conversation was happening :) Dave On 6/2/07, Bob Lewis <[EMAIL PROTECTED]>

Re: [Numpy-discussion] Installing from egg ?

2007-06-03 Thread Robert Kern
Gary Pajer wrote: > Because I'm a glutton for punishment, I'm starting to install things > using easy_install. I'm very new at this, and it's not going well. > python 2.5 / WinXP (and Kubuntu, but we'll start with Windows) > > if I type > easy_install numpy > > stuff downloads, but stops with a

Re: [Numpy-discussion] are there any numpy equivalents to MATLAB nnz(), sparse(), sparsity()?

2007-06-03 Thread Bill Baxter
There is a scipy.sparse package but it seems to be fairly limited currently. Anyway there's definitely nothing like MATLAB's ability to change a matrix to sparse and still use most of the algorithms on it. Good sparse support vs. not so much sparse support should probably be added to the big featur

Re: [Numpy-discussion] numpy r3857 build problem

2007-06-03 Thread David M. Cooke
On Sat, Jun 02, 2007 at 08:14:54PM -0400, Christopher Hanley wrote: > Hi, > > I cannot build the latest version of numpy in svn (r3857) on my Intel > MacBook running OSX 10.4.9. I'm guessing that the problem is that a > fortran compiler isn't found. Since NUMPY doesn't require FORTRAN I > fou

Re: [Numpy-discussion] flatten() without copy - is this possible?

2007-06-03 Thread Anne Archibald
On 01/06/07, dmitrey <[EMAIL PROTECTED]> wrote: > y = x.flatten(1) > > turn array into vector (note that this forces a copy) > > Is there any way to do the trick wthout copying? > What are the problems here? Just other way of array elements indexing... It is sometimes possible to flatten an array

Re: [Numpy-discussion] numpy r3857 build problem

2007-06-03 Thread Christopher Hanley
Some additional information. I have no problems building numpy on my Redhat Enterprise 3 or Solaris 10 boxes at work. I was able to build numpy there with and without the F77 system variable defined. Interesting. Cheers, Chris Christopher Hanley wrote: > Hi, > > I cannot build the latest v

[Numpy-discussion] numpy r3857 build problem

2007-06-03 Thread Christopher Hanley
Hi, I cannot build the latest version of numpy in svn (r3857) on my Intel MacBook running OSX 10.4.9. I'm guessing that the problem is that a fortran compiler isn't found. Since NUMPY doesn't require FORTRAN I found this surprising. Has there been a change in policy? I'm attaching the bui

[Numpy-discussion] Installing from egg ?

2007-06-03 Thread Gary Pajer
Because I'm a glutton for punishment, I'm starting to install things using easy_install. I'm very new at this, and it's not going well. python 2.5 / WinXP (and Kubuntu, but we'll start with Windows) if I type easy_install numpy stuff downloads, but stops with a prompt to select a compiler by pas

Re: [Numpy-discussion] GPU implementation?

2007-06-03 Thread Bob Lewis
James Turner wrote: > Hi Martin, > > > I was wondering if anyone has thought about accelerating NumPy with a > > GPU. For example nVidia's CUDA SDK provides a feasible way to offload > > vector math onto the very fast SIMD processors available on the GPU. > > Currently GPUs primarily support

Re: [Numpy-discussion] flatindex

2007-06-03 Thread Stefan van der Walt
Hi Tobias On Thu, Jan 08, 2004 at 08:35:07PM +0100, Tobias Knopp wrote: Sorry I'm only answering now, but your mail took 3.5 years to arrive ;) > I was looking for a method to find the indices of the smallest element > of an 3-dimensional array a. Therefore i used > > a.arg

[Numpy-discussion] flatten() without copy - is this possible?

2007-06-03 Thread dmitrey
hi all. in the numpy for matlab users I read y = x.flatten(1) turn array into vector (note that this forces a copy) Is there any way to do the trick wthout copying? What are the problems here? Just other way of array elements indexing... Thx, D. ___

[Numpy-discussion] are there any numpy equivalents to MATLAB nnz(), sparse(), sparsity()?

2007-06-03 Thread dmitrey
are there any numpy equivalents to MATLAB nnz(), sparse(), sparsity()? I didn't see the ones in numpy for MATLAB users page. Thx, D. ___ Numpy-discussion mailing list Numpy-discussion@scipy.org http://projects.scipy.org/mailman/listinfo/numpy-discussion