How to quickly do Cholesky factorization for many small matrices?

조회 수: 10 (최근 30일)
Stephan Orzada
Stephan Orzada 2021년 7월 23일
댓글: Stephan Orzada 2021년 8월 1일
In my project, I have to check many small matrices for positive-semidefiniteness (PSDness). I use chol() since it is much faster than using eig() to check for negative eigenvalues. Still it is very slow and the most time consuming part of my calculations, since I have to check 10e6 32x32 matrices over and over again. I already tried to use parfor and batch functions but it doesn't work (I also read this in the forums). However, it occured to me that the processor utilization is very low, so I checked what happens when I run the code on two instances of matlab on the same computer. The processor utilization doubled and each script finished in the same time it would have taken if they had been running alone. So it is possible to let chol() run in parallel on the same system. Any ideas how to do this in the same instance of matlab without incurring the problems you get with chol() in a parfor loop?
  댓글 수: 12
Bruno Luong
Bruno Luong 2021년 7월 31일
편집: Bruno Luong 2021년 7월 31일
In real life 0 eigen value does not exist exactly. CHOL, EIG, EIGS all might fail due to round off.
And Stephan Orzada end up programming his own Cholesky decomposition for his own need, not MATLAB CHOL.
Stephan Orzada
Stephan Orzada 2021년 8월 1일
You are right. For my purpose, I don't care whether it is positive semidefinite or positive definite. Mathematically there is a difference, but it is negligible in many practical cases.

댓글을 달려면 로그인하십시오.

답변 (1개)

Bruno Luong
Bruno Luong 2021년 7월 23일
  댓글 수: 2
Stephan Orzada
Stephan Orzada 2021년 7월 23일
편집: Stephan Orzada 2021년 7월 23일
Thank you, but unfortunately this doesn't work, since chol in MMX ignores the imaginary part of the complex matrices, and anyway does not support the flag which I need for determining PSDness. I couldn't even tell from the results, because even if the matrix is not PSD (for which the Cholesky decomposition doesn't work) it produces a "result" without any error messages.
Bruno Luong
Bruno Luong 2021년 7월 24일
편집: Bruno Luong 2021년 7월 24일
Indeed mmx only deal with real matrix.
But if you are willing to modify the code, you might change the function dpotrf in line 284 of mmx.cpp to zpotrf
Of course you have to take care of retriving MATLAB complex internal interleaved data.
You might ask the author if he can gives you a hand for such task.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by