Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Conditional "pragma omp"

I am trying different kinds of parallelization using OpenMP. As a result I have several lines of #pragma omp parallel for in my code which I (un-)comment alternating. Is there a way to make these lines conditional with something like the following, not working code?

   define OMPflag 1 
   #if OMPFlag pragma omp parallel for
   for ...
like image 232
Framester Avatar asked Nov 03 '10 09:11

Framester


1 Answers

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) {
  ...
}
like image 50
Jens Gustedt Avatar answered Sep 21 '22 05:09

Jens Gustedt