我運行這個簡單的CUDA程序:
#include <cuda_runtime.h>
#include <cuda.h>
#include <stdio.h>
__global__ void
display(char *t[])
{
int v = blockIdx.x;
int p = blockIdx.y;
int offset = v+ p*gridDim.x;
t[offset] = "(";
//
}
void
main()
{
int c = 5;
cudaGetDeviceCount(&c);
cudaDeviceProp prop;
cudaGetDeviceProperties(&prop,0);
printf("The device name is : %s\n", prop.name);
//bool value = prop.integrated;
char *x[6];
int i;
for (i = 0; i<6; i++)
cudaMalloc((void**)&x[i], 20*sizeof(char));
// Checking the meaning of grid(3,2)
dim3 grid(3,2);
display<<<grid,1>>>(x);
char y[30];
cudaMemcpy(y, x[0], 20*sizeof(char), cudaMemcpyDeviceToHost);
printf("The values is :%s\n", y);
cudaFree(x[0]);
getchar();
}
我不明白爲什麼數組在執行結束時,y仍然是空的。 ?難道不應該是「(」
仍然面臨的問題...請幫助! – Programmer
我們正在努力幫助!夥計,冷靜,給我們一些時間 – TimeToCodeTheRoad