将RcppParallel与返回列表的函数一起使用

时间:2019-11-11 10:07:34

标签: rcpp rcppparallel

我是RcppParallel的初学者。我看到一些示例here通过parallelFor函数应用于sqrt。但是我没有一个函数使用向量并返回Rcpp :: List的示例。假设我要并行化的任务如下:

//x is a NumericVector of size T
//out is an Rcpp::List of size T
//for i from 0 to T {
//   put in out[i] an Rcpp::List::create(x(i) and some matrix)
//}

如何使用RcppParallel并行执行此类任务?

0 个答案:

没有答案