Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.

mkl_ddiasv complexity

Petros_Mamales
Beginner
259 Views
Hi,
I would like to ask on the complexity of the mkl_ddiasv sarse diagonal solver.
In particular, if my diagonal matrix is a tridiagonal does it have a comparable complexity with the Thomas algorithm?
(I realize that it cannot be the same, but if mt'ed serious benefits could be gained in using this insead of a hand-written Thomas).
Also for 5-diagonal systems, is the complexity something like bandwidth*matrixSize?
Thank you in advance for your help,
Petros

PS: btw,both solvers (Thomas-tridiagonal and 5-diagonal ) could be very useful additions to mkl. My understanding is that, currently, the only other avail are the BLAS/LAPACK ones that only economize in storage.
0 Kudos
1 Reply
Sergey_K_Intel1
Employee
259 Views
Dear Petros,

The mkl_?diasv routine solves one of the systems of equations: A*x or A^T*x =f where A is a triangular upper or lower sparse matrix stored in the diagonal format. The Thomas algorithm is used to solve tridiagonal systems of equations. So we can see that the functionality is different.

As concerns the complexity of mkl_ddiasv, it is equal to 2*bandwidth *(matrix size).
Sergey
0 Kudos
Reply