gpt4 book ai didi

Rcpp 代码在 Mac 上编译但在 linux 上不编译

转载 作者:行者123 更新时间:2023-12-05 06:35:40 35 4
gpt4 key购买 nike

我的 C++ 代码是接收字符向量并将其转换为 std::set。以下代码在 Mac 上编译但在 Linux 上不编译:

#include <Rcpp.h>
using namespace Rcpp;

// [[Rcpp::plugins(cpp11)]]
// [[Rcpp::export]]
void test(CharacterVector x) {
std::set<std::string> vs(x.begin(), x.end());
}

Linux 编译失败:

/usr/include/c++/4.8.2/bits/stl_function.h:481:7: note:   no known conversion for argument 1 from ‘Rcpp::internal::string_proxy<16>’ to ‘const std::basic_string<char>&’

Mac 信息:

R 版本 3.4.1 (2017-06-30)平台:x86_64-apple-darwin15.6.0(64 位)运行于:macOS High Sierra 10.13.3Rcpp_0.12.16

Linux 信息:

R 版本 3.4.2 (2017-09-28)平台:x86_64-redhat-linux-gnu(64 位)运行于:CentOS Linux 7 (Core)Rcpp_0.12.16

作为解决方法,我可以先将字符向量转换为 std::vector,然后将 std::vector 转换为 std::set。但是,这会在我的测试中造成 ~5-10% 的性能损失,我想避免这一点。

这是一个错误吗?我如何在 Linux 上正确执行此操作?

最佳答案

此变体适用于 Ubuntu 17.10 上的 g++ 7.2:

#include <Rcpp.h>
using namespace Rcpp;

// [[Rcpp::plugins(cpp11)]]
// [[Rcpp::export]]
void test(std::vector<std::string> x) {
std::set<std::string> vs(x.begin(), x.end());
}

并运行(但什么都不做)

R> Rcpp::sourceCpp("/tmp/soQ.cpp")
R> test(rep("lalala", 3))
R>

字符向量很复杂;迭代器可能存在一些不太理想的情况。欢迎细心的PR;与此同时,您还有一个简单的选择。

关于Rcpp 代码在 Mac 上编译但在 linux 上不编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49637621/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com