Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.
Announcements
The Intel sign-in experience has changed to support enhanced security controls. If you sign in, click here for more information.

QR Factorization on sparse matrices?

Mikhail_Matrosov
218 Views
Hello.

I'm trying to solve linear least squares problem on large (about 300k x 100k) sparse matrix. Is there a way to run QR Factorization on sparse matrix? Cannot find one listed in "Matrix Storage Schemes".

BTW: can I ask this question via premier support? Or it just about posting issues, not asking questions?

Thanks a lot.
0 Kudos
1 Solution
Gennady_F_Intel
Moderator
218 Views
I think there are no direct way to do that.
you can try to convert from spare to dense representation ( e.g. CSR format ) and then to use ScaLapack QR factorization.
>>BTW: can I ask this question via premier support? Or it just about posting issues, not asking questions?
no need to do that because of these are two different interfaces to the one input -:).

View solution in original post

2 Replies
Gennady_F_Intel
Moderator
219 Views
I think there are no direct way to do that.
you can try to convert from spare to dense representation ( e.g. CSR format ) and then to use ScaLapack QR factorization.
>>BTW: can I ask this question via premier support? Or it just about posting issues, not asking questions?
no need to do that because of these are two different interfaces to the one input -:).
Mikhail_Matrosov
218 Views
>>I think there are no direct way to do that.

Sad... but thanks
Reply