I want to migrate a piece of code that involves a number of vector and matrix calculations to C or C++, and the objective is to basically speed up the code as much as possible.

My question is that are linear algebra calculations with "for" loops inside C code as fast as using Lapack/Blas or there is some gain by using those libraries?

Or put in other words, can I write a C code doing linear algebra calculations with simple for loops which works as fast as a a code that utilizes Lapack/Blas ?

link|improve this question

4  
If it were trivial to roll your own implementation that was just as fast, why would those libraries be widely-used? – Anon. Feb 21 '11 at 3:17
2  
Numerical methods are quite difficult to get correct (let alone fast) and full of traps for the unwary. Please leave such matters to the experts or do a lot of studying and become an expert yourself (and when you're an expert you'll just say "use LAPACK" and know why). – mu is too short Feb 21 '11 at 4:18
@mu-is-too-short dude my work involves a lot of numerical calculations, and not everyone is born an expert like you, and people ask questions from others to become an expert, and when I say others I do not mean cocky people who leave cocky comments without being any helpful. – runnerup Feb 21 '11 at 18:45
I'm not a numerics expert, I just know enough about it not to try and roll my own linear algebra libraries (except in certain narrow circumstances over Z2). Didn't mean to offend, it is just that few people know enough about numerics to know how difficult it is to get it right. – mu is too short Feb 21 '11 at 22:51
feedback

3 Answers

up vote 8 down vote accepted

Vendor-provided LAPACK / BLAS libraries (Intel's IPP/MKL have been mentioned, but there's also AMD's ACML, and other CPU vendors like IBM/Power or Oracle/SPARC provide equivalents as well) are often highly optimized for specific CPU abilities that'll significantly boost performance on large datasets.

Often, though, you've got very specific small data to operate on (say, 4x4 matrices or 4D dot products, i.e. operations used in 3D geometry processing) and for those sort of things, BLAS/LAPACK are overkill, because of initial tests done by these subroutines which codepaths to choose, depending on properties of the data set. In those situations, simple C/C++ sourcecode, maybe using SSE2...4 intrinsics and/or compiler-generated vectorization, may beat BLAS/LAPACK.
That's why, for example, Intel has two libraries - MKL for large linear algebra datasets, and IPP for small (graphics vectors) data sets.

In that sense,

  • what exactly is your data set ?
  • What matrix/vector sizes ?
  • What linear algebra operations ?

Also, regarding "simple for loops": Give the compiler the chance to vectorize for you. I.e. something like:

for (i = 0; i < DIM_OF_MY_VECTOR; i += 4) {
    vecmul[i] = src1[i] * src2[i];
    vecmul[i+1] = src1[i+1] * src2[i+1];
    vecmul[i+2] = src1[i+2] * src2[i+2];
    vecmul[i+3] = src1[i+3] * src2[i+3];
}
for (i = 0; i < DIM_OF_MY_VECTOR; i += 4)
    dotprod += vecmul[i] + vecmul[i+1] + vecmul[i+2] + vecmul[i+3];

might be a better feed to a vectorizing compiler than the plain

for (i = 0; i < DIM_OF_MY_VECTOR; i++) dotprod += src1[i]*src2[i];

expression. In some ways, what you mean by calculations with for loops will have a significant impact.
If your vector dimensions are large enough though, the BLAS version,

dotprod = CBLAS.ddot(DIM_OF_MY_VECTOR, src1, 1, src2, 1);

will be cleaner code and likely faster.

On the reference side, these might be of interest:

link|improve this answer
feedback

Probably not. People quite a bit of work into ensuring that lapack/BLAS routines are optimized and numerically stable. While the code is often somewhat on the complex side, it's usually that way for a reason.

Depending on your intended target(s), you might want to look at the Intel Math Kernel Library. At least if you're targeting Intel processors, it's probably the fastest you're going to find.

link|improve this answer
1  
+1. ATLAS is a decent free and portable alternative, with no particular licensing problems. GoToBLAS is great, but their licensing sucks. – Alexandre C. Feb 21 '11 at 13:02
feedback

I dont meet this libraries very well. But you should consider that libraries usually make a couple of tests in parameters, they have a "sistem of comunication" to errors, and even the attribution to new variables when you call a function... If the calcs are trivial, maybe you can try do it by yourself, adaptating whith your necessities...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.