在CUDA中使用时,使用malloc()
/ calloc()
的动态内存分配似乎无法正常工作。
至于检查,我使用calloc()
编写了以下代码。该阵列似乎分配了所需的内存,我也可以分配一些值。但是当我从内核打印矩阵元素时,我只能看到垃圾值。我认为这可能是cudaMemcpy()
的问题,但是,如果我将**A
放在一起,而不是A[5][5]
,那么代码就会完美无缺。
memset()
用法导致'核心转储'错误。
任何人都可以帮忙与malloc()
/ calloc()
相处并没有错误吗?
#include<stdio.h>
__global__ void threads(int* dA)
{
int gi=threadIdx.x+(blockIdx.x*blockDim.x);
int gj=threadIdx.y+(blockIdx.y*blockDim.y);
printf("global Id in X= %d, in Y =%d, E= %d\n", gi,gj,dA[gi*5+gj]);
}
int main(int argc, char** argv)
{
int **A, *dA;
int R=5, C=4;
int size=R*C*sizeof(int);
A=(int **)calloc(R, sizeof(int*));
for(int i=0; i<R; i++)
A[i]=(int *)calloc(C, sizeof(int));
// memset(A, 0, size);
for(int i=0; i<R; i++)
{
for(int j=0; j<C; j++)
A[i][j]=i*C+j;
}
printf(" \n Before \n");
for(int i=0; i<R; i++)
{
for(int j=0; j<C; j++)
printf("%d ",A[i][j]);
printf("\n");
}
cudaMalloc((int**) &dA, size);
cudaMemcpy(dA, A, size, cudaMemcpyHostToDevice);
dim3 nblocks(R,C);
dim3 nthreads(1);
threads<<<nblocks, nthreads>>>(dA);
cudaDeviceSynchronize();
cudaFree(dA);
free(A);
return 0;
}
答案 0 :(得分:3)
您的代码问题与使用作为主机功能的malloc
和calloc
无关。问题是你没有正确处理双指针以及如何将它们传递给CUDA内核。正如Robert Crovella所指出的,正确的错误检查可以让您更好地了解实施中缺少的内容。
下面是您的程序的工作版本。它只不过是cuda 2D array problem中talonmies提供的答案的应用。
#include<stdio.h>
#include<conio.h>
inline void GPUassert(cudaError_t code, char * file, int line, bool Abort=true)
{
if (code != 0) {
fprintf(stderr, "GPUassert: %s %s %d\n", cudaGetErrorString(code),file,line);
if (Abort) exit(code);
}
}
#define GPUerrchk(ans) { GPUassert((ans), __FILE__, __LINE__); }
__global__ void threads(int* dA[]) {
int gi=blockIdx.x;
int gj=blockIdx.y;
printf("global Id in X= %i, in Y =%i, E= %i\n", gi, gj, dA[gi][gj]);
}
int main(int argc, char** argv)
{
int **A, *dA;
int R=5, C=4;
int size=R*C*sizeof(int);
A=(int**)calloc(R,sizeof(int*));
for(int i=0; i<R; i++) A[i]=(int*)calloc(C,sizeof(int));
for(int i=0; i<R; i++) for(int j=0; j<C; j++) A[i][j]=i*C+j;
printf("Before transfer \n");
for(int i=0; i<R; i++) { for(int j=0; j<C; j++) { printf("%d ",A[i][j]); } printf("\n"); }
printf("\n");
// --- Create an array of R pointers on the host
int** h_A = (int**)malloc(R*sizeof(int*));
for(int i=0; i<R;i++){
// --- For each array pointer, allocate space for C ints on the device
GPUerrchk(cudaMalloc((void**)&h_A[i], C*sizeof(int)));
// --- Copy the rows of A from host to device at the address determined by h_A[i]
GPUerrchk(cudaMemcpy(h_A[i], &A[i][0], C*sizeof(int), cudaMemcpyHostToDevice));
}
// --- Create an array of R pointers on the device
int **d_A; GPUerrchk(cudaMalloc((void***)&d_A, R*sizeof(int*)));
// --- Copy the addresses of the rows of the device matrix from host to device
GPUerrchk(cudaMemcpy(d_A, h_A, R*sizeof(int*), cudaMemcpyHostToDevice));
dim3 nblocks(R,C);
dim3 nthreads(1);
printf("After transfer \n");
threads<<<nblocks, nthreads>>>(d_A);
GPUerrchk(cudaPeekAtLastError());
cudaDeviceSynchronize();
getch();
return 0;
}
正如cuda 2D array problem中的下划线所示,将2D数组展平为1D总是更好,以避免这种繁琐的数组处理。