I have an R list which I convert to vector of vectors in Rcpp. Now I want to use RcppParallel to use multiple cores. Can I pass such a list or vector of vectors to RcppParallel similar to IntegerMatrix or IntegerVectors?
Asked
Active
Viewed 194 times
0
-
There is no thread safe wrapper for List, cf https://stackoverflow.com/a/38670133/8416610 – Ralf Stubner Nov 10 '18 at 07:04
-
@RalfStubner Thanks! – user8401743 Nov 11 '18 at 20:38