- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我写了下面的Rcpp代码编译了,但是速度没有想象中的快。
// [[Rcpp::export]]
NumericVector combine_list_to_vec (const Rcpp::List& list)
{
int list_size = list.size();
int large_vec_size = 0;
IntegerVector start_index(list_size);
IntegerVector end_index(list_size);
for (int ii = 0; ii < list_size; ii++)
{
NumericVector vec = list[ii];
start_index[ii] = large_vec_size;
large_vec_size += vec.size();
end_index[ii] = large_vec_size - 1;
}
NumericVector large_vec(large_vec_size); // Creating object after getting its size
for (int ii = 0; ii < list_size; ii++)
{
int current_start_index = start_index[ii];
NumericVector vec = list[ii];
for (int jj = 0; jj < vec.size(); jj++)
{
large_vec[jj + current_start_index] = vec[jj];
}
}
return large_vec;
}
输入变量 'list' 包含一堆 NumericVector,我想将它们组合成一个大的,具有 '...tail - head -tail...' 结构。 start_index 和 end_index 变量用于方便复制。
微基准测试为特定示例提供了以下信息:
x=list();
x[[1]]=runif(1E6); x[[2]]=runif(1E6);
x[[3]]=runif(1E6); x[[4]]=runif(1E6);
x[[5]]=runif(1E6); x[[6]]=runif(1E6);
x[[7]]=runif(1E6); x[[8]]=runif(1E6);
x[[9]]=runif(1E6); x[[10]]=runif(1E6);
microbenchmark(combine_list_to_vec(x) -> y)
# Unit: milliseconds
expr min lq mean median uq max neval
# y <- combine_list_to_vec(x) 84.166964 84.587516 89.9520601 84.728212 84.871673 349.33234 100
我尝试的另一种方法是调用外部 R 函数do.call(c,x)
:
// [[Rcpp::export]]
List combine_list_to_vec (const Rcpp::List& list)
{
int list_size = list.size();
int large_vec_size = 0;
IntegerVector start_index(list_size);
IntegerVector end_index(list_size);
for (int ii = 0; ii < list_size; ii++)
{
NumericVector vec = list[ii];
start_index[ii] = large_vec_size;
large_vec_size += vec.size();
end_index[ii] = large_vec_size - 1;
}
NumericVector large_vec = internal::convert_using_rfunction(list, "sub_do_call");
List rtn = List::create(large_vec, start_index, end_index);
return rtn;
}
// The following codes exist as R codes instead of Rcpp
sub_do_call <- function (x)
{
return (do.call(c, x));
}
速度比以前的代码快了将近 4 倍。有什么方法可以通过在 Rcpp 和/或 RcppArmadillo 中使用指针或其他工具来加速组合操作,或者只是在 Rcpp 中编写代码 do.call(c,x) 而不是在外部调用它?谢谢。
最佳答案
如果我理解正确的话,您基本上是在问,“我怎样才能在 base::unlist
中写入 Rcpp
?”而且,自 base::unlist
是一个 .Internal
函数(它有一个 C 实现)你不太可能用 Rcpp
做得更好.
但是,为了好玩,还是让我们试试吧。这是我将使用的与您的类似的实现,但应该比我们使用 std::copy
更便宜而不是在每次迭代时重新索引:
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export]]
NumericVector combine(const List& list)
{
std::size_t n = list.size();
// Figure out the length of the output vector
std::size_t total_length = 0;
for (std::size_t i = 0; i < n; ++i)
total_length += Rf_length(list[i]);
// Allocate the vector
NumericVector output = no_init(total_length);
// Loop and fill
std::size_t index = 0;
for (std::size_t i = 0; i < n; ++i)
{
NumericVector el = list[i];
std::copy(el.begin(), el.end(), output.begin() + index);
// Update the index
index += el.size();
}
return output;
}
/*** R
library(microbenchmark)
x <- replicate(10, runif(1E6), simplify = FALSE)
identical(unlist(x), combine(x))
microbenchmark(
unlist(x),
combine(x)
)
*/
运行这段代码给我:
> Rcpp::sourceCpp('C:/Users/Kevin/scratch/combine.cpp')
> library(microbenchmark)
> x <- replicate(10, runif(1E6), simplify = FALSE)
> identical(unlist(x), combine(x))
[1] TRUE
> microbenchmark(
+ unlist(x),
+ combine(x)
+ )
Unit: milliseconds
expr min lq mean median uq max neval
unlist(x) 21.89620 22.43381 29.20832 23.14454 35.32135 68.09562 100
combine(x) 20.96225 21.55827 28.13269 22.08985 24.13403 51.68660 100
所以,实际上是一样的。我们获得了一点点时间只是因为我们没有进行任何类型检查(这意味着如果我们没有一个只包含数字 vector 的列表,这段代码就会崩溃)但至少应该说明我们确实可以在这里做得更好。
(我想唯一的异常(exception)是巨大 vector ,并行处理在这里可能会有帮助)
关于c++ - 如何有效地将一系列 NumericVectors 组合成一个大的 NumericVector?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30175104/
我收到未知数据,我想以编程方式查看相关性,并将所有完全相关的变量组合在一起(忽略方向)。在下面的数据集中,我可以手动查看相关性并说 a, f, g, h一起去吧b, d, e .我怎样才能以编程方
这个问题在这里已经有了答案: use dplyr's summarise_each to return one row per function? (3 个答案) 关闭 4 年前。 作为探索性工作的
我想要完成的是使用数组存储未知大小的多项式。我在互联网上看到的是使用一个数组,每个单元格都包含系数,度数是单元格编号,但这不是有效的,因为如果我们有一个多项式,如:6x^14+x+5。这意味着我们将从
嘿伙计们,我一直在尝试解析 HTML 文件以从中抓取文本,但时不时地,我会得到一些非常奇怪的字符,例如 à€œ。我确定是“智能引号”或弯头标点符号导致了我的所有问题,因此我的临时修复是搜索所有这些字符
我原来的 data.table 由三列组成。 site、observation_number 和 id。 例如以下是 id = z 的所有观察结果 |site|observation_number|i
"Premature optimisation is the root of all evil (but it's nice to have once you have an ugly solutio
给定这个数组 X: [1 2 3 2 3 1 4 5 7 1] 和行长度数组R: [3 2 5] 表示转换后每行的长度。 我正在寻找一个计算效率高的函数来将 X reshape 为数组 Y: [[ 1
我有一些 data.frame s: # Sample data a <- data.frame(c(1:10), c(11:20)) names(a) <- c("A", "B") b <- dat
我有点困惑。列表擅长任意位置插入,但不善于随机访问? (怎么可能)如果你不能随机访问,你怎么知道在哪里插入? 同样,如果你可以在任何位置插入,为什么你不能从那个位置高效地读取? 最佳答案 如果您已经有
我有一个向量,我想计算它的移动平均值(使用宽度为 5 的窗口)。 例如,如果有问题的向量是[1,2,3,4,5,6,7,8],那么 结果向量的第一个条目应该是 [1,2,3,4,5] 中所有条目的总和
有一个随机整数生成器,它生成随机整数并在后台运行。需求设计一个API,调用时返回当时的簇数。 簇:簇是连续整数的字典顺序。例如,在这种情况下,10,7,1,2,8,5,9 簇是 3 (1,2--5--
我想做的是将一组 (n) 项分成大小相等的组(大小为 m 的组,并且为简单起见,假设没有剩余,即 n 可以被 m 整除)。这样做多次,我想确保同一组中的任何项目都不会出现两次。 为了使这稍微更具体一些
假设我有一些包含类型排列的模板表达式,在本例中它们来自 Abstract Syntax Tree : template
我已经在这方面工作了几天,似乎没有我需要的答案。 由于担心这个被标记为重复,我将解释为什么其他问题对我不起作用。 使用 DIFFLIB for Python 的任何答案都无助于我的需求。 (我在下面描
我正在使用 NumPy 数组。 我有一个 2N 长度向量 D,并希望将其一部分 reshape 为 N x N 数组 C. 现在这段代码可以满足我的要求,但对于较大的 N 来说是一个瓶颈: ``` i
我有一个问题: 让我们考虑这样的 pandas 数据框: Width Height Bitmap 67 56 59 71 61 73 ...
我目前正在用 C 语言编写一个解析器,设计它时我需要的东西之一是一个可变字符串“类”(一组对表示实例的不透明结构进行操作的函数),我将其称为 my_string。 string 类的实例只不过是包装
假设我在 --pandas-- 数据框中有以下列: x 1 589 2 354 3 692 4 474 5 739 6 731 7 259 8 723
我有一个成员函数,它接受另一个对象的常量引用参数。我想 const_cast 这个参数以便在成员函数中轻松使用它。为此,以下哪个代码更好?: void AClass::AMember(const BC
我们目前正在将 Guava 用于其不可变集合,但我惊讶地发现他们的 map 没有方法可以轻松创建只需稍作修改的新 map 。最重要的是,他们的构建器不允许为键分配新值或删除键。 因此,如果我只想修改一
我是一名优秀的程序员,十分优秀!