Re: [Numpy-discussion] The NumPy Fortran-ordering quiz

2006-10-18 Thread George Nurser
On 18/10/06, Charles R Harris <[EMAIL PROTECTED]> wrote: > > > On 10/18/06, George Nurser <[EMAIL PROTECTED]> wrote: > > > > None of the LaPack stuff seems to use the Fortran stuff, they just > > > > transpose and copy. > > > > You've

Re: [Numpy-discussion] The NumPy Fortran-ordering quiz

2006-10-18 Thread George Nurser
h requires an mxn size array, then no copying is required. This seems to work for me -- the transpose *does* have fortran order. Also, in f2py, if I use -DF2PY_REPORT_ON_ARRAY_COPY=1 I receive no alert of any copy. Apologies if these are simply confused raving

Re: [Numpy-discussion] [OT] Interesting interview with Pearu (f2py and others...)

2006-10-06 Thread George Nurser
le to make this work with f2py, but it would be very useful if it could be. --George Nurser. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to sha

[Numpy-discussion] reload and f2py

2006-09-26 Thread George Nurser
g the f2py interfacing. --George Nurser. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics thro

Re: [Numpy-discussion] Call for a vote on .M .A .T .H attributes

2006-07-07 Thread George Nurser
On 07/07/06, Travis Oliphant <[EMAIL PROTECTED]> wrote: > > This is a call for a vote on each of the math attributes. Please post > your vote as > > +1 : support > +0 : don't care so go ahead > -0 : don't care so why do it > -1 : against > > Vote on the following issues separately: > > > > 1)

Re: [Numpy-discussion] .T Transpose shortcut for arrays again

2006-07-07 Thread George Nurser
ating over indexes from where. Moreover I think the notation .T is perfectly reasonable. So I agree with: > I am very much in favor of .T, but it should be a full .transpose(), not > just swap the last two axes. I don't care so much for the others. +1 for .T == .transpose() George Nurs

[Numpy-discussion] immediate fill after empty gives None.

2006-06-30 Thread George Nurser
)).fill(2.e5) In [12]: print depths_s2 None --George Nurser. 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

Re: [Numpy-discussion] f2py produces so.so

2006-06-19 Thread George Nurser
On 19/06/06, Berthold Höllmann <[EMAIL PROTECTED]> wrote: > "George Nurser" <[EMAIL PROTECTED]> writes: > > > I have run into a strange problem with the current numpy/f2py (f2py > > 2_2631, numpy 2631). > > I have a file [Wright.f] which contains 5 dif

[Numpy-discussion] f2py produces so.so

2006-06-19 Thread George Nurser
I have run into a strange problem with the current numpy/f2py (f2py 2_2631, numpy 2631). I have a file [Wright.f] which contains 5 different fortran subroutines. Arguments have been specified as input or output by adding cf2pyintent (in), (out) etc. Doing f2py -c Wright.f -m Wright.so does n

Re: [Numpy-discussion] numpy vs numeric benchmarks

2006-06-02 Thread George Nurser
Yes, using numpy.dot I get 250ms, numpy.matrixmultiply 11.8s. while a sans-BLAS Numeric.matrixmultiply takes 12s. The first 100 results from numpy.dot and numpy.matrixmultiply are identical Use dot;) --George. On 02/06/06, Filip Wasilewski <[EMAIL PROTECTED]> wrote: > Hi, > > It seems tha