I have tried to understand if MKL provides a faster method for the solution of simple linear tri-diagonal systems which can be easily solved with simple Gaussian elimination.
I am using PARDISO in different cases.
链接已复制
3 回复数
Pardiso is not the best choice for solving banded linear equations. Please consider using the MKL/Lapack banded equations solvers ?gbslv with bandwidths kl = ku = 1, see https://software.intel.com/en-us/node/468882 .
@Gennady,
Documentation of ?gtsv states:
The routine uses Gaussian elimination with partial pivoting.
How come it doesn't use Thomas Algorithm?
How does it compare to vanilla Thomas Algorithm in performance?