Hello. I have the following code:
for(i=0;i<N;i++){
function(i,B);
}
where function (i,B) is this:
void function(i,B){
for(j=0;j<N;j++){
//Do calculations on B
}
}
I want to make it parrallel using OpenAcc. Is making the function parallel alone is one thing. Is it possible to have parallel calls of the fuction?