How to accelerate the SVD algorithm?

AI Thread Summary
The discussion revolves around the performance comparison between a custom C implementation of the GR SVD algorithm and MATLAB's SVD functionality. The original poster expresses disappointment in their program's performance, seeking information about the algorithm used by MATLAB, which is identified as DGESVD from LAPACK. Despite having accessed MATLAB's documentation, they struggle to understand the algorithm's efficiency. Responses highlight the importance of utilizing MATLAB's extensive documentation and suggest that many questions arise from users not fully engaging with available resources. Additionally, contributors emphasize that MATLAB benefits from highly optimized libraries like Intel's BLAS, which significantly enhance performance. Suggestions for improving custom implementations include leveraging processor-specific optimizations and exploring libraries like Eigen for more efficient coding practices. The conversation reflects a mix of frustration with the original poster's approach and a focus on the technical intricacies of algorithm optimization in numerical computing.
irongreat
Messages
8
Reaction score
0
I've written a program in c language in terms of the GR SVD algorithm. To my dispointment,its performance is worse than the svd of matlab. I wish to get to know which algorithm the MATLAB used. Who may tell me? Thanks.
 
Technology news on Phys.org
Sigh.

irongreat said:
I've written a program in c language in terms of the GR SVD algorithm. To my dispointment,its performance is worse than the svd of matlab. I wish to get to know which algorithm the MATLAB used. Who may tell me?

Matlab will.

Code:
doc svd
 
Oh, you said nothing.
 
irongreat said:
Oh, you said nothing.

No, I told you that if you had had the startlingly obvious idea to check the documentation for svd in Matlab, you'd find which algorithms it uses to compute singular value decompositions.

If you want to be snippy towards someone who's given you the answer to your question, that's your business.
 
You are not friendly,Shoehorn. I have read the MATLAB document. I know it use DGESVD. But I cannot find the details of the algorithm. So I asked the question.
Do take any thing for granted. Ok? GUY
 
As a matter of fact ,I have found the source code of the algorithm. But I wonder the cause of its fast speed.So I hope to find the primitive document about the algorithm.
Who may tell me?
 
irongreat said:
Oh, you said nothing.
Actually, shoehorn said everything. It was enough for you to figure out that, for real-valued matrices, MATLAB uses the DGESVD routine from LAPACK. That should have been enough of a clue for you to find the http://www.netlib.org/lapack/lug/" , which is probably what you were looking for.
 
Last edited by a moderator:
irongreat said:
You are not friendly,Shoehorn. I have read the MATLAB document. I know it use DGESVD... So I asked the question.

So you know which algorithm Matlab uses for singular value decompositions, and yet you still decided to waste everyone's time by asking which algorithm Matlab uses for singular value decompositions?

Matlab has the best documentation of any software I've ever seen. Ever. Learn how to use it. 90% of the questions about Matlab on this forum are from people who are too lazy to read the documentation and instead want to waste other people's time by getting them to do work that they are too lazy/stupid to perform.
 
Last edited:
So you know which algorithm Matlab uses for singular value decompositions, and yet you still decided to waste everyone's time by asking which algorithm Matlab uses for singular value decompositions?

Matlab has the best documentation of any software I've ever seen. Ever. Learn how to use it. 90% of the questions about Matlab on this forum are from people who are too lazy to read the documentation and instead want to waste other people's time by getting them to do work that they are too lazy/stupid to perform.

Don't insult me,ok? I only implement sth not by matlab.
If I used matlab, I not ask the question.

Matlab is a good software, but it is too large , I cannot put it into a hardware. So I have to implement svd by myself.
 
  • #10
I have to research linpack source code. It is more complicated than read the primitive document.

Sigh.
 
  • #11
I dislike those who take themselves as industrious men.
Is it a a great thing to develop sth on matlab?
 
  • #12
I dislike them also.

By taking advantage of the specific processor-memory architecture you can accelerate
computations in way not directly related to the mathematical algorithm:

using processor specific vectorization (SSE2,3,...)
blocking,
loop unrolling, ...

You would want to

optimize main memory to L2-cache traffic,
avoid TLB misses

and possibly many other things.

When you go up against MATLAB you are going up against Intel hand tuned BLAS
(10 times faster than naive code depending on the operation).

Large systems that try to optimize on different architectures are
ATLAS BLAS, GOTO BLAS.

Look for paper by Jack Donguerra for the issues involved.

Naive C-code is hopeless.

For a reasonably small system that accomlishes quite a lot using C++ template metaprogramming see Eigen2:
http://eigen.tuxfamily.org/index.php?title=Main_Page

This is your best chance to do something yourself and is also very elegant code.
 
Back
Top