We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c1e5c7 commit c81beaeCopy full SHA for c81beae
inst/include/RcppParallel.h
@@ -6,12 +6,14 @@
6
#include "RcppParallel/TinyThread.h"
7
8
// Use TBB only where it's known to compile and work correctly
9
+#ifndef RCPP_PARALLEL_USE_TBB
10
#if defined(__APPLE__) || defined(__gnu_linux__)
11
#define RCPP_PARALLEL_USE_TBB 1
12
#include "RcppParallel/TBB.h"
13
#else
14
#define RCPP_PARALLEL_USE_TBB 0
15
#endif
16
+#endif
17
18
#include "RcppParallel/RVector.h"
19
#include "RcppParallel/RMatrix.h"
0 commit comments