- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个任务需要处理一个大型矩阵(数百万行,数百列)字符串。每行操作都是独立的。因此,我想利用一些并行计算来提高整个项目的速度。
如果我为数值矩阵构建myWorker
,如下所示,我能够编译代码而不会出错
// [[Rcpp::depends(RcppParallel)]]
#include <RcppParallel.h>
#include <Rcpp.h>
#include <string.h>
struct myWorker : public RcppParallel::Worker
{
// input
const RcppParallel::RMatrix<double> input;
int version;
// output
RcppParallel::RMatrix<double> outmat;
// initialization
myWorker(const Rcpp::NumericMatrix input, int version, Rcpp::NumericMatrix outmat)
: input(input), version(version), outmat(outmat) {}
// the operator
void operator()(std::size_t begin, std::size_t end) {
// do stuff
}
};
但是,当我设置输入矩阵并初始化使用Rcpp::CharacterMatrix
我遇到编译错误。
In instantiation of ‘RcppParallel::RMatrix<T>::RMatrix(const Source&) [with
Source = Rcpp::Matrix<16>; T = <typehere>]
R/x86_64-pc-linux-gnu-library/3.3/RcppParallel/include/RcppParallel/RMatrix.h:198:28:
error: cannot convert ‘Rcpp::Matrix<16>::iterator {aka
Rcpp::internal::Proxy_Iterator<Rcpp::internal::string_proxy<16> >}’ to
‘std::basic_string<char>*’ in initialization
ncol_(source.ncol())
我用 myWorker(const Rcpp::NumericMatrix input
const RcppParallel::RMatrix<std::string> input;
const RcppParallel::RMatrix<char> input;
const RcppParallel::RMatrix<char*> input;
const RcppParallel::RMatrix<char**> input;
const RcppParallel::RMatrix<char32_t> input;
指针是个坏主意。其他选项导致常见错误以上。
有人问了一个非常相似的问题 here .
是否有一种简单的方法来包装 Rcpp::NumericMatrix
RcppParallel::RMatrix
用于字符矩阵的线程安全工作?
编辑
任务的更多细节:
imput
矩阵由需要输入的 ICD-9-CM 或 ICD-10-CM 代码组成与代码集进行比较以确定分类。有数百万行、数百列和大约十几个分类。
纯 R 中的一个小例子是:
classification_1 <-
c("99680", "99688", "99689", "V421", "V422", "V426", "V5391", "4697", "5051",
"5059", "5280", "5282", "4103", "0091", "0092", "0093")
classification_2 <-
c("14", "15", "16", "17", "18", "19", "20", "23", "V4281", "V4282", "0010", "9925")
icd_codes <-
structure(c("5282", "3320", "4100", "0234", "V426", "3895", "3592",
"5651", "0397", "V5302", "5675", "0092", "V461", "4697", "5571",
"3776", "9964", "9702", "3583", "8607", "99661", "3767", "3129",
"3182", "5503", "5285", "4641", "6861", "3351", "2751", "76511",
"V446", "34581", "7472", "5190", "9723", "28801", "0010", "8103",
"4270", "9962", "4211", "4242", "34511", "3352", "0372", "76492",
"5675", "284", "4281", "3314", "0681", "3781", "0152", "3760",
"3763", "5597", "4399", "V5351", "8108", "3994", "4581", "V460",
"5533", "8137", "99663", "4210", "741", "5722", "8949", "76412",
"5569", "5674", "99667", "7707", "3753", "8606", "V553", "5051",
"2884", "5059", "7711", "8136", "5673", "7373", "2821", "5993",
"3776", "2822", "4274", "3789", "0371", "3591", "76523", "5722",
"V56", "V445", "2359", "4243", "99683"), .Dim = c(5L, 20L))
apply(icd_codes, 1,
function(x) {
c(class1 = as.integer(any(x %in% classification_1)),
class2 = as.integer(any(x %in% classification_2)))
})
icd_codes
对象的每一行都可以并行计算。因为我有一个上面工作的单线程 C++ 版本,我希望使用RcppParallel 提高工作的整体速度,关键是,在一个尽可能接近操作系统独立的方式。与我一起工作的小组由 Windows、OSX 和 Linux 用户组成。
最佳答案
对于共病分类问题的极快的基于 Rcpp 的矩阵代数解决方案,请参阅我的包 icd ,特别是在 methodology 上发送给 JSS 的 PDF 文章.
字符串处理永远不会很快,因为无论您进行多少高级优化,您在分析时都会很快发现。
关于c++ - 如何使用 RcppParallel 创建 Rcpp::CharacterMatrix 的线程安全包装?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43424114/
我是一名优秀的程序员,十分优秀!