Для устранения подобных проблем важно максимально упростить проблему.
В этом случае это означает:
- Удалить распараллеливание.
- Уменьшите входной размер до функции.
- 10 намного легче увидеть, чем 100.
- Добавить операторы трассировки для значений переменных.
- Код выполнения
Основная проблема заключается в том, как строится nRows
:
const int nRows = nObservations * nRows;
// ^^^^^ Self-reference
Переключите его на:
const int nRows = nObservations * nDraws;
Затем добавьте параллелизацию, и все будет хорошо.
Пример упрощенного кода с операторами трассировки для отладки.
#include "RcppArmadillo.h"
// [[Rcpp::depends(RcppArmadillo)]]
using namespace Rcpp;
// [[Rcpp::export]]
arma::mat my_matrix(const arma::mat & A,
const arma::mat B) {
const int nObservations = A.n_cols;
const int nDraws = B.n_rows;
const int nRows = nObservations * nRows;
// Show initialization information
Rcpp::Rcout << "nObservations: " << nObservations << std::endl
<< "nDraws: " << nDraws << std::endl
<< "nRows: " << nRows << std::endl;
arma::mat out(nRows, 3);
// Show trace of matrix construction
Rcpp::Rcout << "out - rows: " << out.n_rows << std::endl
<< "out - columns: " << out.n_cols << std::endl;
int i, n, iter, row;
for(i = 0; i < nDraws; ++i){
for(n = 0; n < nObservations; ++n) {
row = i * nObservations + n;
// Show trace statement of index being accessed
Rcpp::Rcout << "Output row access id: " << row << std::endl;
out(row, 0) = i + 1;
out(row, 1) = n + 1;
out(row, 2) = row + 1;
}
}
return out;
}
Компиляция этого фрагмента кода дает два предупреждения, относящиеся к неиспользуемым переменным ...
file69cab2726a1.cpp:13:13: warning: unused variable 'iter' [-Wunused-variable]
int i, n, iter, row;
^
file69cab2726a1.cpp:11:37: warning: variable 'nRows' is uninitialized when used within its own initialization [-Wuninitialized]
const int nRows = nObservations * nRows;
~~~~~ ^~~~~
Запуск кода затем дает:
set.seed(9782)
A <- matrix(rnorm(10), ncol = 5)
B <- matrix(rnorm(10), nrow = 10)
test <- my_matrix(A = A, B = B)
# nObservations: 5
# nDraws: 10
# nRows: 0
# out - rows: 0
# out - columns: 3
# Output row access id: 0
#
# error: Mat::operator(): index out of bounds