将 ARPACK 与 PARDISO 结合使用
这是一个类似于这里的问题的问题。
我想知道是否已经有 ARPACK Eigensolver 与 PARDISO 求解器 和 英特尔 mkl 库?
This is a question similar to a question here.
I wonder is there already an open source implementation or example of ARPACK Eigensolver that works well with PARDISO solver and Intel mkl library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经用 C# 实现了它。
这个想法是,必须转换 CSR 中的矩阵格式格式。然后,可以使用 MKL 来计算线性方程求解算法(使用 pardiso 求解器),即矩阵向量操作。
I've implemented it already, in C#.
The idea is that one must convert the matrix format in CSR format. Then, one can use MKL to compute linear equation solving algorithm ( using pardiso solver), the matrix-vector manipulation.