Confused with pdpotrf arguments

后端 未结 1 858
清歌不尽
清歌不尽 2020-12-21 14:57

I want to do a Cholesky factorization in a distributed environment. For that purpose, I use pdpotrf(). However, I am struggling understanding the parameters needed by the fu

相关标签:
1条回答
  • 2020-12-21 15:22

    From this answer, we have:

    IA and JA: those parameters are meant to provide the starting row and column of your global matrix inside a larger matrix. They are only relevant if you have a big matrix and only want the Cholesky decomp of a submatrix. In your case, IA and JA both have to be 1!

    Again, from this answer, there exists a link, that describes desca:

    enter image description here

    0 讨论(0)
提交回复
热议问题