Mpi function define
Posted
by Simone
on Stack Overflow
See other posts from Stack Overflow
or by Simone
Published on 2009-08-03T17:18:23Z
Indexed on
2010/05/10
4:08 UTC
Read the original article
Hit count: 502
I wrote a program in c using MPI (Message Passing Inteface) that compute recursively the inverse of a lower triangular matrix. Every cpu sends 2 submatrices to other two cpus, they compute them and they give them back to the cpu caller. When the cpu caller has its submatrices it has to perform a matrix multiplication. In the recurrence equation the bottle neck is matrix multiplication. I implemented parallel multiplication with mpi in c but i'm not able to embed it into a function. Is it possible?
thanks, Simone
© Stack Overflow or respective owner