在CUDA文檔中,我發現cudaDeviceGetAttribute是__host__ __device__
函數。所以我想我可以在我的__global__
函數中調用它來獲取我的設備的一些屬性。可悲的是,它似乎意味着一些不同,因爲如果我將它放入__device__
函數並從我的全局函數中調用此函數,我會收到一個編譯錯誤事件。我無法從__device__函數調用__host__ __device__函數嗎?
是否可以在我的GPU上調用cudaDeviceGetAttribute?或者__host__ __device__
是什麼意思?
這裏是我的源代碼:
__device__ void GetAttributes(int* unique)
{
cudaDeviceAttr attr = cudaDevAttrMaxThreadsPerBlock;
cudaDeviceGetAttribute(unique, attr, 0);
}
__global__ void ClockTest(int* a, int* b, long* return_time, int* unique)
{
clock_t start = clock();
//some complex calculations
*a = *a + *b;
*b = *a + *a;
GetAttributes(unique);
*a = *a + *b - *a;
clock_t end = clock();
*return_time = end - start;
}
int main()
{
int a = 2;
int b = 3;
long time = 0;
int uni;
int* dev_a;
int* dev_b;
long* dev_time;
int* unique;
for (int i = 0; i < 10; ++i) {
cudaMalloc(&dev_a, sizeof(int));
cudaMalloc(&dev_b, sizeof(int));
cudaMalloc(&dev_time, sizeof(long));
cudaMalloc(&unique, sizeof(int));
cudaMemcpy(dev_a, &a, sizeof(int), cudaMemcpyHostToDevice);
cudaMemcpy(dev_b, &b, sizeof(int), cudaMemcpyHostToDevice);
ClockTest <<<1,1>>>(dev_a, dev_b, dev_time, unique);
cudaMemcpy(&a, dev_a, sizeof(int), cudaMemcpyDeviceToHost);
cudaMemcpy(&time, dev_time, sizeof(long), cudaMemcpyDeviceToHost);
cudaMemcpy(&uni, unique, sizeof(int), cudaMemcpyDeviceToHost);
cudaFree(&dev_a);
cudaFree(&dev_b);
cudaFree(&dev_time);
cudaFree(&unique);
printf("%d\n", time);
printf("unique: %d\n", uni);
cudaDeviceReset();
}
return 0;
}
爲什麼要在CUDA代碼中獲取該信息?爲什麼你不能從CPU調用並傳遞到GPU? –
我知道我可以從CPU傳遞它,但是對於我的項目,出於安全原因,必須將信息收集在設備中。 –