VAPOR3 3.9.4
OpenMPSupport.h
Go to the documentation of this file.
1#ifndef OPENMPSUPPORT_H
2#define OPENMPSUPPORT_H
3
4#ifdef USE_OMP
5 #include <omp.h>
6#else
7
8#define omp_get_num_threads() (1)
9#define omp_set_num_threads(x) (void(x))
10#define omp_get_thread_num() (0)
11
12#endif
13
14#endif