c++ - CUDA:统一内存,使用数组

标签 c++ arrays class cuda operator-overloading

我试图让统一内存与类一起工作,并通过内核调用在统一内存中传递和操作数组。我想通过引用传递所有内容。

因此,我覆盖了类和数组的新方法,以便 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;
}

最佳答案

您的错误很简单:myArray 是在主机上分配的,而不是统一内存。

原因是 testArrayManaged 派生(因此您的 testArray *test = new testArray 分配统一内存),在其构造函数内部完成的分配分配了一个 int 数组,它们不是从 Managed 派生的。

因此您的指针位于统一内存中,但指向主机内存。

就在我脑海中,以下应该有所帮助:

struct UnifiedInt : int, Managed { /* implement a few convenience functions */ };

关于c++ - CUDA:统一内存,使用数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28195444/

相关文章:

c++ - 将可选属性表示为 C++ 类成员

python - 如何在python中的不同类上使用同一个对象?

c++ - timer_create 和 timerid,这允许吗?

php - 多维数组到PHP中的单个数组

c++ - 矩阵减法无限显示问题

c - 我需要将一个整数传递给一个只接受数组的函数

javascript - 如何判断 js 类方法是否是静态的?

c++ - 代码块,GCC : change project language c and c++?

关于构造函数成员初始化列表和抛出的 C++ 语法问题

c++ - 将 TLB 文件提交到存储库