以下是重现无法解释的行为的代码:
的main.cpp
#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字节)。有关正在传输的数据的任何线索?它们是Thrust算法固有的,因此是不可避免的吗?