Hi I have a code deeply embedded with gsl-gnu matrix arithmetic, the main computation of this code is with a very large matrix inversion that takes a very long time in serial and with gsl and blas functions, is there a way to parallelize this computation or convert it for use in an already parallel library like scalapack?

link|improve this question

the size of the matrix ranges from 250,000 x 250,000 to 1 Million by 1 Million – pyCthon Mar 16 at 1:31
the matrix is dense and memory or computational power isn't an issue , i can use terabytes or memory and run it on thousands of nodes – pyCthon Mar 17 at 5:49
I've almost got the problem solved with PETSC and also SuperLU(the distributed version) – pyCthon Mar 17 at 5:59
feedback

2 Answers

up vote 2 down vote accepted
+25

If your matrix is sparse, i.e. it contains a lot of zero entries, then you can easily implement many sparse matrix algebra packages without too much trouble. Unfortunately this will require you to store your matrices in sparse format which, to my knowledge, gsl does not do. Once you have your matrix stored in some sparse format, you should be able to handle large systems without too much trouble, even in serial applications.

I suggest using UMFPACK because it requires the least amount of work to implement as it doesn't require you to put your data into their structures.

A note on paralleism: If your code is currently serial, going to a parallel solver is NOT trivial. It is possible that it may be simple to implement a multi-threaded package, but I don't have much experience with threaded programs. Additionally, truly parallel (distributed memory) direct solvers are not all that efficient, since each processor needs its own copy of the full matrix, and it is better to use iterative methods.

A little more detail would be helpful: How long is a long time? Do you need the inverse for some reason, or are you just solving a system of equations?

link|improve this answer
The matrix is dense, with GSL on a single core it takes about 40 minutes, using openMP and 16 cores from a dual socket node it becomes 8 minutes(entire formula). I can't show the exact formula, but i need the inversion for 4 different equations, so even a parallel lu decomposition or cholskey to solve for the inversion is sufficient – pyCthon Mar 17 at 5:59
feedback

Have you tried Intel MKL? It includes its own parallel versions of blas functions. Last time I tried, they're pretty darn fast. But it would also be easier to answer if you'd give info on size of matrix, but as long as you're running x64, many CPUs/cores and with much RAM, well, it doesn't really matter then.

Another option is nVidia CUDA. Their interface is similar to blas, but it's actually slower than MKL, still faster than serial. Might be that I tried it on an old card, but you need at least 200 GPU stream units to call it useful.

EDIT: Matrices of those sizes are beyond my experience.

link|improve this answer
I answers your question. – pyCthon Mar 16 at 1:30
also MKL isn't free – pyCthon Mar 16 at 16:26
feedback

Your Answer

 
or
required, but never shown

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