Re: [Numpy-discussion] Travis and the NumPy Documentation

2008-01-01 Thread Travis E. Oliphant
Bill Baxter wrote: > I just read the blog post about Travis switching jobs Enthought. Was > that posted here? If so I'm surprised I missed it. > I don't think it was posted here. It was announced at SciPy and Enthought put out a press release (but the planet.scipy.org aggregator was not run

[Numpy-discussion] Travis and the NumPy Documentation

2008-01-01 Thread Bill Baxter
I just read the blog post about Travis switching jobs Enthought. Was that posted here? If so I'm surprised I missed it. Anyway that sounds like great news for the NumPy/SciPy communities. I hope it also is great news for you and your family, Travis. I have to say that I took some amount of inspi

[Numpy-discussion] need inverse of PyArray_ITER_GOTO1D

2008-01-01 Thread Neal Becker
I need a function that is the inverse of PyArray_ITER_GOTO1D. A bit of guesswork brought me to this, can anyone please tell me if it looks correct? inline npy_intp as_linear (PyArrayIterObject const* it) { if (it->nd_m1 == 0) return (it->dataptr - it->ao->data)/it->strides[0]; else if (it

Re: [Numpy-discussion] planet.scipy.org

2008-01-01 Thread Jarrod Millman
On Jan 1, 2008 6:18 PM, Barry Wark <[EMAIL PROTECTED]> wrote: > I'd like to submit my blog for inclusion too... > > http://softwareforscientists.blogspot.com/search/label/scipy Hmm. I added you, but while I was adding you it looks like your blog disappeared. Thanks, -- Jarrod Millman Computatio

Re: [Numpy-discussion] planet.scipy.org

2008-01-01 Thread Barry Wark
Jarrod, I'd like to submit my blog for inclusion too... http://softwareforscientists.blogspot.com/search/label/scipy Again, not too many posts yet, but things will be ramping up. On Jan 1, 2008 1:31 PM, Jarrod Millman <[EMAIL PROTECTED]> wrote: > On Jan 1, 2008 12:07 PM, Ondrej Certik <[EMAIL P

Re: [Numpy-discussion] [OT] Which version of svn does svn.scipy.org run ?

2008-01-01 Thread Jarrod Millman
On Dec 17, 2007 11:23 PM, David Cournapeau <[EMAIL PROTECTED]> wrote: > Is it possible to know which version of subversion is used by the > svn.scipy.org server ? I am trying to use svnsync on it, without any > success, and wanted to know if this was coming from svn.scipy.org or > from somethin

Re: [Numpy-discussion] fast iteration (I think I've got it)

2008-01-01 Thread Travis E. Oliphant
Neal Becker wrote: > This is a c-api question. > > I'm trying to get iterators that are both fast and reasonably general. I > did confirm that iterating using just the general PyArrayIterObject > protocol is not as fast as using c-style pointers for contiguous arrays. > > Please confirm if my unde

Re: [Numpy-discussion] planet.scipy.org

2008-01-01 Thread Jarrod Millman
On Jan 1, 2008 12:07 PM, Ondrej Certik <[EMAIL PROTECTED]> wrote: > So could you please put this into the planet.conf? > > [http://ondrejcertik.blogspot.com/feeds/posts/default/-/scipy] > name = Ondřej Čertík Done. Thanks, -- Jarrod Millman Computational Infrastructure for Research Labs 10 Giann

Re: [Numpy-discussion] fast iteration (I think I've got it)

2008-01-01 Thread Neal Becker
Thank you for the response. I'm afraid I haven't explained what I'm doing. I have a lot of c++ code written in a generic c++ interface style. (The code is for signal processing, but that is irrelevant). The code is generic for data types as well as container types. To accomplish this, the int

Re: [Numpy-discussion] fast iteration (I think I've got it)

2008-01-01 Thread Anne Archibald
On 01/01/2008, Neal Becker <[EMAIL PROTECTED]> wrote: > This is a c-api question. > > I'm trying to get iterators that are both fast and reasonably general. I > did confirm that iterating using just the general PyArrayIterObject > protocol is not as fast as using c-style pointers for contiguous ar

Re: [Numpy-discussion] planet.scipy.org

2008-01-01 Thread Ondrej Certik
On Dec 31, 2007 11:43 PM, Jarrod Millman <[EMAIL PROTECTED]> wrote: > Hey, > > I just wanted to announce that we now have a NumPy/SciPy blog > aggregator thanks to Gaël Varoquaux: http://planet.scipy.org/ Cool! I was going to write an email that it could be a good idea. Thanks Gael. > Feel free

[Numpy-discussion] fast iteration (I think I've got it)

2008-01-01 Thread Neal Becker
This is a c-api question. I'm trying to get iterators that are both fast and reasonably general. I did confirm that iterating using just the general PyArrayIterObject protocol is not as fast as using c-style pointers for contiguous arrays. Please confirm if my understanding is correct. There ar