标签: cuda
当我们想在设备上分配内存时,我们使用以下语法:
float *device_array; error = cudaMalloc((void *)&device_array, sizeof(float) * N);
那是什么“&”对于? 我们不在cudaMemCpy中使用它。