Dear All,
I would like to know if someone can help me in this situation:
I have a openmp parallel for and I would like to put progress bar increment inside like:
#pragma omp parallel for
for(int n..){
for(int i...){
for(int j...){
//my stuff
}
}
emit progressbar(n); //it doesn't work correctly and also increment calculation time.
}
#pragma omp parallel for
for(int n..){
for(int i...){
for(int j...){
//my stuff
}
}
emit progressbar(n); //it doesn't work correctly and also increment calculation time.
}
To copy to clipboard, switch view to plain text mode
But obviously it doesn't work, is there any way to perform this kind of idea?
Thank you very much for any kind of help.
Bookmarks