Loading...
Searching...
No Matches
 
 
 
 
Go to the documentation of this file.
   14#define _DO_PRAGMA(s) _Pragma(#s) 
   17#define _OMP_PRAGMA(s) _DO_PRAGMA(omp s) 
   22#define _omp_parallel parallel default(shared) 
   25#define _omp_sum(...) reduction(+ : __VA_ARGS__) 
   26#define _omp_max(...) reduction(max : __VA_ARGS__) 
   27#define _omp_min(...) reduction(min : __VA_ARGS__) 
   29#define hr_threadId() omp_get_thread_num() 
   33#define hr_threadId() ((int)(0)) 
   36#define _OMP_BARRIER _OMP_PRAGMA(barrier) 
   38#define _OMP_PARALLEL_FOR      \ 
   39    _OMP_PRAGMA(_omp_parallel) \