我试图让统一内存与类一起工作,并通过内核调用传递和操作统一内存中的数组。我想通过引用传递所有内容。
所以我重写了类和数组的新方法,以便GPU可以访问它们,但我认为我需要添加更多代码才能将数组放在统一内存中,但不太确定如何执行此操作。调用fillArray()方法时出现内存访问错误。
如果我必须进行这些类型的操作(对阵列进行算术和在不同大小的数组之间进行复制)数百次,统一内存是一种很好的方法,还是应该坚持在cpu和gpu内存之间手动复制?非常感谢你!
#include "cuda_runtime.h"
#include "device_launch_parameters.h"
#include <iostream>
#include <stdio.h>
#define TILE_WIDTH 4
#ifdef __CUDACC__
#define CUDA_CALLABLE_MEMBER __host__ __device__
#else
#define CUDA_CALLABLE_MEMBER
#endif
__global__ void add1(int height, int width, int *a, int *resultArray)
{
int w = blockIdx.x * blockDim.x + threadIdx.x; // Col // width
int h = blockIdx.y * blockDim.y + threadIdx.y;
int index = h * width + w;
if ((w < width) && (h < height))
resultArray[index] = a[index] + 1;
}
class Managed
{
public:
void *operator new(size_t len)
{
void *ptr;
cudaMallocManaged(&ptr, len);
return ptr;
}
void Managed::operator delete(void *ptr)
{
cudaFree(ptr);
}
void* operator new[] (size_t len) {
void *ptr;
cudaMallocManaged(&ptr, len);
return ptr;
}
void Managed::operator delete[] (void* ptr) {
cudaFree(ptr);
}
};
class testArray : public Managed
{
public:
testArray()
{
height = 16;
width = 8;
myArray = new int[height*width];
}
~testArray()
{
delete[] myArray;
}
CUDA_CALLABLE_MEMBER void runTest()
{
fillArray(myArray);
printArray(myArray);
dim3 dimGridWidth((width - 1) / TILE_WIDTH + 1, (height - 1)/TILE_WIDTH + 1, 1);
dim3 dimBlock(TILE_WIDTH, TILE_WIDTH, 1);
add1<<<dimGridWidth,dimBlock>>>(height, width, myArray, myArray);
cudaDeviceSynchronize();
printArray(myArray);
}
private:
int *myArray;
int height;
int width;
void fillArray(int *myArray)
{
for (int i = 0; i < height; i++){
for (int j = 0; j < width; j++)
myArray[i*width+j] = i*width+j;
}
}
void printArray(int *myArray)
{
for (int i = 0; i < height; i++){
for (int j = 0; j < width; j++)
printf("%i ",myArray[i*width+j]);
printf("\n");
}
}
};
int main()
{
testArray *test = new testArray;
test->runTest();
//testArray test;
//test.runTest();
system("pause");
return 0;
}
答案 0 :(得分:1)
您的错误很简单:myArray
在主机上分配,而不是统一内存。
原因在于testArray
Managed
来自testArray *test = new testArray
(因此你的int
分配统一内存),在其构造函数内完成的分配会分配一个{ {1}} s,不是从Managed
派生的。
因此,您的指针位于统一内存中,但指向主机内存。
在我的脑海中,以下内容应该有所帮助:
struct UnifiedInt : int, Managed { /* implement a few convenience functions */ };
答案 1 :(得分:0)
这很简单,但我不知道该怎么做。无论如何,如果你改变这行代码:
myArray = new int[height*width];
以下,它看起来像是有效的。
cudaMallocManaged(&myArray, height * width * sizeof(int));
如果你有另一种方法,我会有兴趣看到它。