Conditional “pragma omp”

…衆ロ難τιáo~ 提交于 2019-11-28 11:28:58

An OpenMP parallel construct can have an if clause specified. In Fortran I'd write something like this:

!$omp parallel if(n>25) ... 

I sometimes use this when a problem might be too small to bother parallelising. I guess you could use the same approach to check a debug flag at run time. I'll leave it up to you to figure out the C++ syntax but it's probably exactly the same.

C99 has the _Pragma keyword that allows you to place what otherwise would be #pragma inside macros. Something like

#define OMP_PARA_INTERNAL _Pragma("omp parallel for")
#if [your favorite condition]
#define OMP_FOR OMP_PARA_INTERNAL for
#else
#define OMP_FOR for
#endif

and then in your code

OMP_FOR (unsigned i; i < n; ++i) {
  ...
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!