这是重现无法解释的行为的代码:
主文件
#include <iostream>
#include <openacc.h>
extern "C" int findme(float *ARRAY);
int main(){
float *ARRAY = new float [10];
int position;
ARRAY[0] = 97.7302;
ARRAY[1] = 108.154;
ARRAY[2] = 99.8558;
ARRAY[3] = 88.9383;
ARRAY[4] = 98.4755;
ARRAY[5] = 109.186;
ARRAY[6] = 107.205;
ARRAY[7] = 110.886;
ARRAY[8] = 86.0737;
ARRAY[9] = 94.9976;
#pragma acc enter data copyin(ARRAY[0:10])
#pragma acc host_data use_device(ARRAY)
position = findme(ARRAY);
#pragma acc exit data delete(ARRAY[0:10])
std::cout << position << std::endl;
}
findme.cu
#include <thrust/binary_search.h>
#include <thrust/device_vector.h>
#include <thrust/functional.h>
#include <thrust/sort.h>
extern "C" int findme(float *ARRAY){
thrust::device_ptr<float> ARRAY_ptr(ARRAY);
thrust::device_vector<float> ARRAY_SORTED(10);
thrust::copy(ARRAY_ptr, ARRAY_ptr+10, ARRAY_SORTED.begin());
thrust::sort(ARRAY_SORTED.begin(), ARRAY_SORTED.end(), thrust::less<float>());
thrust::device_vector<float>::iterator iter = thrust::lower_bound(ARRAY_SORTED.begin(), ARRAY_SORTED.end(), 100);
return iter - ARRAY_SORTED.begin();
}
有一个 1 字节的设备到主机传输(我猜 8 字节设备到主机的传输是position
int
,但为什么是 8 个字节而不是 4 个?)...
...和一台主机到设备的 4 字节传输...
...我无法解释。请注意,ARRAY
屏幕截图中看不到复制的内容,但包含在主机到设备传输(40 字节)的详细信息选项卡中。关于准确传输哪些数据的任何线索?它们是推力算法所固有的,因此是不可避免的吗?