Hi,

(1). I am wondering how I can speed up the time-consuming computation in the loop of my code below using MPI?
Code:
 int main(int argc, char ** argv)   
 {   
 // some operations           
 f(size);           
 // some operations         
 return 0;   
 }   

 void f(int size)   
 {   
 // some operations          
 int i;
...