Вы можете реализовать это, смешав thrust::transform
с операцией «собрать», используя permutation_iterator
:
#include <thrust/device_vector.h>
#include <thrust/iterator/permutation_iterator.h>
#include <thrust/transform.h>
#include <thrust/sequence.h>
#include <thrust/functional.h>
int main()
{
size_t n = 100;
// declare storage
thrust::device_vector<int> sn(n);
thrust::device_vector<int> n_index(n);
thrust::device_vector<int> c(n);
// initialize vectors with some sequential values for demonstrative purposes
thrust::sequence(sn.begin(), sn.end());
thrust::sequence(n_index.begin(), n_index.end());
thrust::sequence(c.begin(), c.end());
// sn[i] = c[n_index[i]] - sn[i]
thrust::transform(thrust::make_permutation_iterator(c.begin(), n_index.begin()),
thrust::make_permutation_iterator(c.end(), n_index.end()),
sn.begin(),
sn.begin(),
thrust::minus<int>());
return 0;
}