We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88abf03 commit 322345fCopy full SHA for 322345f
examples/boost-simd-abssum.cpp
@@ -46,4 +46,4 @@ microbenchmark(
46
R = sum(abs(x)),
47
simd = simd_abssum(x)
48
)
49
-*/
+*/
examples/simd-operations.Rmd
@@ -160,10 +160,10 @@ Note that if you conditionally compile all uses of Boost.SIMD within your packag
160
161
If you don't want to use Boost.SIMD at all you can explicitly disable it as follows:
162
163
-1. For `sourceCpp` you can define `RCPP_PARALLEL_USE_TBB`:
+1. For `sourceCpp` you can define `RCPP_PARALLEL_USE_SIMD`:
164
165
```cpp
166
- #define RCPP_PARALLEL_USE_TBB 0
+ #define RCPP_PARALLEL_USE_SIMD 0
167
```
168
169
2. For R packages you can pass `simd = FALSE` to the CxxFlags function:
0 commit comments