[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.programming

I have decided that will port my scalable parallel conjugate gradient solvers to C++..

Ramine

5/20/2016 10:12:00 PM

Hello....


I have decided that will port my scalable parallel conjugate gradient
solvers to C++..

I will port this one that is a Parallel implementation of Conjugate
Gradient Sparse Linear System Solver library:

https://sites.google.com/site/aminer68/parallel-implementation-of-conjugate-gradient-sparse-linear-sys...

And i will port also this one to C++ that is not sparse and that
is scalable on NUMA architecture:

https://sites.google.com/site/aminer68/scalable-parallel-implementation-of-conjugate-gradient-linear-system-solver-library-that-is-numa-aware-and-c...


I will not use C++ operator overloading, i will use an
interface with methods like this:

void setElement(long2 r, long2 c, double e);
double getElement (long2 r, long2 c);




Thank you,
Amine Moulay Ramdane.