Dear Dan, "[email protected]" <[email protected]> writes: > Is it possible to solve a linear system of the form Ax=d using PyCUDA? > The actual system I wish to solve is sparse and tridiagonal.
As long as it's positive definite and you don't mind installing pymetis and Cython, the answer is yes. That said, writing a CUSP wrapper is likely a saner approach than using this code. It's undocumented for a reason. :) > I noticed the sparse module in the Docs, > http://wiki.tiker.net/PyCuda/Examples/SparseSolve, but I could > understand the code (I'm very familiar with Python, but not with > CUDA). Is there an example with comments or a tutorial would be even > better. At the moment my code is using scipy and numpy. What about it is not making sense? If you've got a specific question, I'd be happy to try and answer. Andreas _______________________________________________ PyCUDA mailing list [email protected] http://lists.tiker.net/listinfo/pycuda
