Example code for solving a sparse linear system Ax=d
6 posts
• Page 1 of 1
Example code for solving a sparse linear system Ax=d
Hello,
I am interesting in solving the linear system A.x = d using cudatools (the specific example is actually sparse and tri-diagonal matrix). Is there any tutorials or example code which I can follow which will show how to set-up the matices and perform the solution?
Best wishes,
Dan
I am interesting in solving the linear system A.x = d using cudatools (the specific example is actually sparse and tri-diagonal matrix). Is there any tutorials or example code which I can follow which will show how to set-up the matices and perform the solution?
Best wishes,
Dan
- boyfarrell
- Posts: 3
- Joined: Tue Mar 12, 2013 5:37 pm
Re: Example code for solving a sparse linear system Ax=d
Are you interested in solving dense matrices? If so look into CULA Dense. Otherwise, we'll need a little more information to provide some help.
- kyle
- Administrator
- Posts: 301
- Joined: Fri Jun 12, 2009 7:47 pm
Re: Example code for solving a sparse linear system Ax=d
Hello Kyle,
Thanks for the reply. No I am explicitly interested in solving sparse systems, which are tridiagonal. For example take the Poisson equation,
.
The matrix and vector on the left are A and x, respectively. The vector on the right is d and all the terms are known. Therefore the system has the form A.x=d, I wish to solve this system of equations to find the (only) unknown, vector x. This is quite a standard linear system.
Best wishes,
Dan.
Thanks for the reply. No I am explicitly interested in solving sparse systems, which are tridiagonal. For example take the Poisson equation,

The matrix and vector on the left are A and x, respectively. The vector on the right is d and all the terms are known. Therefore the system has the form A.x=d, I wish to solve this system of equations to find the (only) unknown, vector x. This is quite a standard linear system.
Best wishes,
Dan.
- boyfarrell
- Posts: 3
- Joined: Tue Mar 12, 2013 5:37 pm
Re: Example code for solving a sparse linear system Ax=d
Ah, I misunderstood your question. We have an example in the SDK demonstrating how to solve a traditional system using CULA Sparse. The bulk of the example is in a single call to:
culaSparseCudaDcooCg(...)
Which uses the Cuda platform, takes double precision (D) coordinate matrix (Coo) as input, and uses the conjugate gradient solver (Cg) to solve the system. There are also parameters to further specify options such as tolerance and maximum number of iterations.
culaSparseCudaDcooCg(...)
Which uses the Cuda platform, takes double precision (D) coordinate matrix (Coo) as input, and uses the conjugate gradient solver (Cg) to solve the system. There are also parameters to further specify options such as tolerance and maximum number of iterations.
- kyle
- Administrator
- Posts: 301
- Joined: Fri Jun 12, 2009 7:47 pm
Re: Example code for solving a sparse linear system Ax=d
Hello Kyle,
Fantastic! I will give it a go.
Is there any example code I could follow for solving sparse system? For example, I imagine there is plenty of boilerplate that will need to be setup etc.
Best wishes,
Fantastic! I will give it a go.
Is there any example code I could follow for solving sparse system? For example, I imagine there is plenty of boilerplate that will need to be setup etc.
Best wishes,
- boyfarrell
- Posts: 3
- Joined: Tue Mar 12, 2013 5:37 pm
6 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 1 guest