我是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并行执行此类任务?