开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
Linus
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
for(int i = 0; i<N; i++){
for(int j = i+1; j<N; j++){
for(int k = j+1; k<N; k++){
for(int l = k+1; l<N; l++){
//parallelize this code here
}
}
}
}
单层用简单的#pragma omp parallel for就是以做到平行化,
想请教如何用openmp 进行多层for loop的平行化
感谢
喂入的资料(Input):
预期的正确结果(Expected Output):
错误结果(Wrong Output):
程式码(Code):(请善用置底文网页, 记得排版)
补充说明(Supplement):