CUDA当在主机代码中声明常量内存时,如何访问设备内核中的常量内存?

时间:2013-10-27 17:57:24

标签: c cuda

记录这是家庭作业,所以尽量少帮助。我们使用常量存储器来存储“掩模矩阵”,该掩模矩阵将用于在更大的矩阵上执行卷积。当我在主机代码中时,我使用cudaMemcpyToSymbol()将掩码复制到常量内存。

我的问题是,一旦将其复制并启动设备内核代码,设备如何知道访问常量内存掩码矩阵的位置。在内核启动时是否需要传入指针。教授给我们的大部分代码都不应该被改变(没有指向传入掩码的指针)但总是有可能他犯了一个错误(虽然这很可能是我对某事的理解)

常量memeory declaratoin应该包含在单独的kernel.cu文件中吗?

我正在最小化代码,只显示与常量内存有关的事情。因此,请不要指出是否有什么东西没有初始化等。有代码,但目前不关心。

main.cu:

#include <stdio.h>
#include "kernel.cu"

__constant__ float M_d[FILTER_SIZE * FILTER_SIZE];

int main(int argc, char* argv[])
{

     Matrix M_h, N_h, P_h; // M: filter, N: input image, P: output image

    /* Allocate host memory */
    M_h = allocateMatrix(FILTER_SIZE, FILTER_SIZE);
    N_h = allocateMatrix(imageHeight, imageWidth);
    P_h = allocateMatrix(imageHeight, imageWidth);

    /* Initialize filter and images */
    initMatrix(M_h);
    initMatrix(N_h);


    cudaError_t cudda_ret = cudaMemcpyToSymbol(M_d, M_h.elements, M_h.height * M_h.width * sizeof(float), 0, cudaMemcpyHostToDevice);
    //char* cudda_ret_pointer = cudaGetErrorString(cudda_ret);

    if( cudda_ret != cudaSuccess){
        printf("\n\ncudaMemcpyToSymbol failed\n\n");
        printf("%s, \n\n", cudaGetErrorString(cudda_ret));
    }


    // Launch kernel ----------------------------------------------------------
    printf("Launching kernel..."); fflush(stdout);

    //INSERT CODE HERE
    //block size is 16x16
    //              \\\\\\\\\\\\\**DONE**
    dim_grid = dim3(ceil(N_h.width / (float) BLOCK_SIZE), ceil(N_h.height / (float) BLOCK_SIZE));
    dim_block = dim3(BLOCK_SIZE, BLOCK_SIZE);



    //KERNEL Launch

    convolution<<<dim_grid, dim_block>>>(N_d, P_d);

    return 0;
}

kernel.cu: 这就是我不知道如何访问常数内存的方式。

//__constant__ float M_c[FILTER_SIZE][FILTER_SIZE];

__global__ void convolution(Matrix N, Matrix P)
{
    /********************************************************************
    Determine input and output indexes of each thread
    Load a tile of the input image to shared memory
    Apply the filter on the input image tile
    Write the compute values to the output image at the correct indexes
    ********************************************************************/

    //INSERT KERNEL CODE HERE

    //__shared__ float N_shared[BLOCK_SIZE][BLOCK_SIZE];


    //int row = (blockIdx.y * blockDim.y) + threadIdx.y;
    //int col = (blockIdx.x * blockDim.x) + threadIdx.x;

}

2 个答案:

答案 0 :(得分:7)

在“经典”CUDA编译中,必须定义所有代码和符号(纹理,常量内存,设备函数)以及访问它们的任何主机API调用(包括内核启动,绑定到纹理,复制同一翻译单元中的符号)。这实际上意味着在同一个文件中(或通过同一文件中的多个include语句)。这是因为“经典”CUDA编译不包含设备代码链接器。

自CUDA 5发布以来,可以使用单独的编译模式,并将不同的设备代码对象链接到支持它的体系结构上的单个fatbinary有效负载。在这种情况下,您需要使用extern关键字声明任何__constant__变量,并且定义符号恰好一次。

如果你不能使用单独的编译,那么通常的解决方法是在与你的内核相同的.cu文件中定义__constant__符号,并包含一个小的主机包装器函数,它只调用cudaMemcpyToSymbol来设置__constant__符号有问题。您可能会对内核调用和纹理操作执行相同的操作。

答案 1 :(得分:4)

以下是&#34;最小尺寸&#34;示例显示__constant__符号的使用。您不需要将任何指针传递给__global__函数。

#include <cuda.h>
#include <cuda_runtime.h>
#include <stdio.h>

__constant__ float test_const;

__global__ void test_kernel(float* d_test_array) {
    d_test_array[threadIdx.x] = test_const;
}

#include <conio.h>
int main(int argc, char **argv) {

    float test = 3.f;

    int N = 16;

    float* test_array = (float*)malloc(N*sizeof(float)); 

    float* d_test_array;
    cudaMalloc((void**)&d_test_array,N*sizeof(float));

    cudaMemcpyToSymbol(test_const, &test, sizeof(float));
    test_kernel<<<1,N>>>(d_test_array);

    cudaMemcpy(test_array,d_test_array,N*sizeof(float),cudaMemcpyDeviceToHost);

    for (int i=0; i<N; i++) printf("%i %f\n",i,test_array[i]);

    getch();
    return 0;
}