如果我运行这个程序,我会得到#34;在第48行和第34行的matrixMulti.cu中遇到了非法的内存访问。错误。我搜索并尝试了很多。所以我希望有人可以帮助我。
第48行:HANDLE_ERROR(cudaMemcpy(数组,devarray,N * N * sizeof(int),cudaMemcpyDeviceToHost));
该计划只是为了进入CUDA。我试图实现矩阵乘法。
#include <iostream>
#include<cuda.h>
#include <stdio.h>
using namespace std;
#define HANDLE_ERROR( err ) ( HandleError( err, __FILE__, __LINE__ ) )
void printVec(int** a, int n);
static void HandleError( cudaError_t err, const char *file, int line )
{
if (err != cudaSuccess)
{
printf( "%s in %s at line %d\n", cudaGetErrorString( err ),
file, line );
exit( EXIT_FAILURE );
}
}
void checkCUDAError(const char *msg)
{
cudaError_t err = cudaGetLastError();
if( cudaSuccess != err)
{
fprintf(stderr, "Cuda error: %s: %s.\n", msg,
cudaGetErrorString( err) );
exit(EXIT_FAILURE);
}
}
__global__ void MatrixMulti(int** a, int** b) {
b[0][0]=4;
}
int main() {
int N =10;
int** array, **devarray;
array = new int*[N];
for(int i = 0; i < N; i++) {
array[i] = new int[N];
}
HANDLE_ERROR ( cudaMalloc((void**)&devarray, N*N*sizeof(int) ) );
HANDLE_ERROR ( cudaMemcpy(devarray, array, N*N*sizeof(int), cudaMemcpyHostToDevice) );
MatrixMulti<<<1,1>>>(array,devarray);
HANDLE_ERROR ( cudaMemcpy(array, devarray, N*N*sizeof(int), cudaMemcpyDeviceToHost) );
HANDLE_ERROR ( cudaFree(devarray) );
printVec(array,N);
return 0;
}
void printVec(int** a , int n) {
for(int i =0 ; i < n; i++) {
for ( int j = 0; j <n; j++) {
cout<< a[i][j] <<" ";
}
cout<<" "<<endl;
}
}
答案 0 :(得分:11)
通常,分配和复制双下标C数组的方法不起作用。 cudaMemcpy
期望 flat ,连续分配,单指针,单下标数组。
由于这种混淆,传递给内核(int** a, int** b
)的指针无法正确(安全地)解除引用两次:
b[0][0]=4;
当您尝试在内核代码中执行上述操作时,您将获得非法的内存访问,因为您尚未在设备上正确分配指针到指针的样式分配。
如果您使用cuda-memcheck
运行代码,您将获得内核代码中非法内存访问的另一个指示。
在这些情况下,通常的建议是将2D数组“展平”为单维,并使用适当的指针或索引算法来模拟2D访问。 可能分配2D数组(即双下标,双指针),但它相当复杂(部分原因是需要“深拷贝”)。如果您想了解更多信息,只需在CUDA 2D array
的右上角搜索。
这是您的代码版本,其中包含设备端阵列的数组扁平化:
$ cat t60.cu
#include <iostream>
#include <cuda.h>
#include <stdio.h>
using namespace std;
#define HANDLE_ERROR( err ) ( HandleError( err, __FILE__, __LINE__ ) )
void printVec(int** a, int n);
static void HandleError( cudaError_t err, const char *file, int line )
{
if (err != cudaSuccess)
{
printf( "%s in %s at line %d\n", cudaGetErrorString( err ),
file, line );
exit( EXIT_FAILURE );
}
}
void checkCUDAError(const char *msg)
{
cudaError_t err = cudaGetLastError();
if( cudaSuccess != err)
{
fprintf(stderr, "Cuda error: %s: %s.\n", msg,
cudaGetErrorString( err) );
exit(EXIT_FAILURE);
}
}
__global__ void MatrixMulti(int* b, unsigned n) {
for (int row = 0; row < n; row++)
for (int col=0; col < n; col++)
b[(row*n)+col]=col; //simulate 2D access in kernel code
}
int main() {
int N =10;
int** array, *devarray; // flatten device-side array
array = new int*[N];
array[0] = new int[N*N]; // host allocation needs to be contiguous
for (int i = 1; i < N; i++) array[i] = array[i-1]+N; //2D on top of contiguous allocation
HANDLE_ERROR ( cudaMalloc((void**)&devarray, N*N*sizeof(int) ) );
HANDLE_ERROR ( cudaMemcpy(devarray, array[0], N*N*sizeof(int), cudaMemcpyHostToDevice) );
MatrixMulti<<<1,1>>>(devarray, N);
HANDLE_ERROR ( cudaMemcpy(array[0], devarray, N*N*sizeof(int), cudaMemcpyDeviceToHost) );
HANDLE_ERROR ( cudaFree(devarray) );
printVec(array,N);
return 0;
}
void printVec(int** a , int n) {
for(int i =0 ; i < n; i++) {
for ( int j = 0; j <n; j++) {
cout<< a[i][j] <<" ";
}
cout<<" "<<endl;
}
}
$ nvcc -arch=sm_20 -o t60 t60.cu
$ ./t60
0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9
$