英文:
Is there a CUDA equivalent to the OpenCL shuffle operation?
问题
这个链接描述了如何使用掩码来对矢量类型的元素进行洗牌。CUDA 中是否有类似的功能?
英文:
http://man.opencl.org/shuffle.html
This shuffles the elements of a vector type, based on a mask. Is there an equivalent in CUDA ?
答案1
得分: 2
没有等同于CUDA的东西。
如已指出,一个可能的方法是将向量的元素放入一个数组中,然后以这种方式进行处理。
英文:
There isn't anything equivalent in CUDA.
As already indicated, one possible approach would be to put the elements of a vector into an array, and do your work that way.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论