Intel® Moderncode for Parallel Architectures
Support for developing parallel programming applications on Intel® Architecture.

Looking for the best solution

ekeom
Novice
442 Views
Dear All,

I have one inversion matrix routine for complex non-symmetric and full matrix, based on Gauss-Jordan algorithm and written in Fortran 95. For large matrix (> 2500 x 2500) it takes a lot of time, thus I would like to use parallel or multithreading computation. There so many solution on the market: OpenMP, MPI, multithreading, MultiCore, GPU (it seemed to be fast)... Can someone tell me what is the best portable solution.

Best regards,

Didace
0 Kudos
3 Replies
TimP
Honored Contributor III
442 Views

No, as you don't care to tell why you are doing this, no one will be able to tell you what is best. Are you not aware that libraries such as MKL and ACML support pre-built OpenMP methods?
0 Kudos
ekeom
Novice
442 Views
Quoting - tim18

No, as you don't care to tell why you are doing this, no one will be able to tell you what is best. Are you not aware that libraries such as MKL and ACML support pre-built OpenMP methods?
Dear Tim18,

Thank you very much for your answer. I have try MKL, but I was not able to make it run and I don't know if it yes portable. I mean by protable, if I can compile and linke an executable and send it to someone else for use !

Best regards,

Didace
0 Kudos
Tudor
New Contributor I
442 Views
If all you are looking for is portability, then your problem lies not in the threading API / library, bur rather in the language. For good portability, try to implement it in Java.
0 Kudos
Reply