gpt4 book ai didi

c++ - RStudio 与 Rcpp 不断崩溃

转载 作者:行者123 更新时间:2023-11-30 01:37:12 25 4
gpt4 key购买 nike

我想了解导致此程序崩溃的原因。我至少看过三个相关问题here , herehere ,但我还没有找到解决该问题的明确答案,因此这里有一些示例代码来重现该问题。

R代码:

library(Rcpp)

Rcpp::sourceCpp("myfunction.cpp")

data1 <- rnorm(2000)
data2 <- rnorm(2000)

mydata <- matrix(cbind(data1, data2), nrow=2000, ncol=2)
values <- log(1:6)

for (i in 1:1000) {
myfunction(values, mydata)
}

C++代码:

#include "Rcpp.h"
#include "math.h"
using namespace Rcpp;

// [[Rcpp::export]]
double myfunction(const NumericVector& theta, const NumericMatrix& data) {

double ans = 0;

int theta_size = theta.length();
NumericVector mytheta(theta_size);

int data_size = data.nrow();
NumericMatrix mat(data_size, 2);

for (int i = 0; i < theta_size; i++) {
mytheta(i) = exp(theta(i));
}

if ( true ) { // Flow control

for (int i = 0; i < data_size; i++) {
mat(i, 1) = pow(data(i-1, 1), 2) + mytheta(1)*mat(i-1, 1);
ans = ans + 1;
}

for (int i = 0; i < data_size; i++) {
mat(i, 2) = pow(data(i-1, 2), 2) + mytheta(4)*mat(i-1, 2);
ans = ans + 1;
}

}

Rcout << "Ok!\n";

return ans;
}

一切正常至少第一次我使用 myfunction(),但在 R for 循环中调用时它会崩溃。我重新安装了 R、Rtools 和 RStudio(在 Windows 上)以查看安装是否有问题,但我仍然面临同样的问题。

这使得 R 和 C++ 之间的无缝集成不像我最初想象的那样无缝,而且由于我看到我不是唯一一个面临这个问题的人,看起来我们都在做一些明显的错误在开始使用 Rcpp 时(至少在 RStudio 上),但它是什么?

从本质上讲,我想确定我没有遗漏一些非常明显的东西,因为到目前为止我看到的所有答案似乎都暗示情况确实如此。

注意:这是我一直在用 Rcpp 测试的较长函数的缩短版本,原始版本在我第一次调用它时似乎运行良好几次 ,但它最终也会崩溃。

更新:删除了 rm(),糟糕。

最佳答案

for (int i = 0; i < data_size; i++) {
mat(i, 1) = pow(data(i-1, 1), 2) + mytheta(1)*mat(i-1, 1);
ans = ans + 1;
}

i == 0 时,您尝试访问 data(-1, 1) 并且事情从那里变得梨形。事实上,它在您第一次运行它时没有崩溃,这仅意味着您很幸运(或不幸,因为它引诱您产生一种错误的自信感)。

关于c++ - RStudio 与 Rcpp 不断崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50143425/

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