Re: [Numpy-discussion] Dot in C extension

2008-05-24 Thread Charles R Harris
On Sun, May 25, 2008 at 12:12 AM, Charles R Harris < [EMAIL PROTECTED]> wrote: > > > On Sat, May 24, 2008 at 11:29 PM, <[EMAIL PROTECTED]> wrote: > >> Hi all, >> >> I'm trying to write a Gauss-Seidel function in C++. The function works >> however it is too slow because I'm not using any accelerati

Re: [Numpy-discussion] Dot in C extension

2008-05-24 Thread Charles R Harris
On Sat, May 24, 2008 at 11:29 PM, <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm trying to write a Gauss-Seidel function in C++. The function works > however it is too slow because I'm not using any acceleration for the > vector multiplication. I'm not really sure how to access the dot function > in

[Numpy-discussion] Dot in C extension

2008-05-24 Thread jordan
Hi all, I'm trying to write a Gauss-Seidel function in C++. The function works however it is too slow because I'm not using any acceleration for the vector multiplication. I'm not really sure how to access the dot function in my extension, nor what all the arguments are for. Is this the right fun