gpt4 book ai didi

c - 向量化嵌套索引

转载 作者:太空宇宙 更新时间:2023-11-04 03:52:14 25 4
gpt4 key购买 nike

我有一个 for 循环来做索引:

for (int i=0; i<N; i++){
a[i] = b[c[i]]
}

c 是感兴趣的索引并且是 int *,而 ba float * 和操作值。

但是,这需要很长时间(而且不会花那么长时间)。我想要一些矢量化版本,最有可能在 BLAS/LAPLACK/etc 中找到。

我正在寻找 nested_indexing(float * output_vector, float * input_vector, int * input_indices)

我试过查看 docs , 但还没有找到任何东西。

最佳答案

vDSP_vgathr正是这样做的。它需要两个 float *的和一个 int * .它相当于 for (i=0; i<N; i++) a[i] = b[c[i]] .

他们使用的措辞是

Uses elements of vector B as indices to copy selected elements of vector A to sequential locations in vector C

也许它也可以是顺序索引。我注意到,找到这些晦涩的函数最困难的部分是找到正确的词以用于您的搜索。

关于c - 向量化嵌套索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19800616/

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