使用 2 个视频卡进行 CUDA C 编程

Posted

技术标签:

【中文标题】使用 2 个视频卡进行 CUDA C 编程【英文标题】:CUDA C programming with 2 video cards 【发布时间】:2012-07-15 03:17:27 【问题描述】:

我对 CUDA 编程非常陌生,正在阅读 nvidia 提供的“CUDA C 编程指南”。 (http://developer.download.nvidia.com/compute/DevZone/docs/html/C/doc/CUDA_C_Programming_Guide.pdf)

在第 25 页中,它具有执行矩阵乘法的以下 C 代码。您能告诉我如何使该代码在两台设备上运行吗? (如果我的计算机中安装了两个支持 nvida CUDA 的卡)。你能举个例子吗?

// Matrices are stored in row-major order: 
// M(row, col) = *(M.elements + row * M.stride + col) 
typedef struct  
    int width; 
    int height; 
    int stride; 
    float* elements; 
 Matrix; 

// Get a matrix element 
__device__ float GetElement(const Matrix A, int row, int col) 
 
    return A.elements[row * A.stride + col]; 
 

// Set a matrix element 
__device__ void SetElement(Matrix A, int row, int col, float value) 
 
    A.elements[row * A.stride + col] = value; 
 

// Get the BLOCK_SIZExBLOCK_SIZE sub-matrix Asub of A that is 
// located col sub-matrices to the right and row sub-matrices down 
// from the upper-left corner of A 
__device__ Matrix GetSubMatrix(Matrix A, int row, int col) 
 
    Matrix Asub; 
    Asub.width = BLOCK_SIZE; 
    Asub.height = BLOCK_SIZE; 
    Asub.stride = A.stride; 
    Asub.elements = &A.elements[A.stride * BLOCK_SIZE * row + BLOCK_SIZE * col]; 
    return Asub;
     

// Thread block size 
#define BLOCK_SIZE 16 

// Forward declaration of the matrix multiplication kernel 
__global__ void MatMulKernel(const Matrix, const Matrix, Matrix); 

// Matrix multiplication - Host code
// Matrix dimensions are assumed to be multiples of BLOCK_SIZE 
void MatMul(const Matrix A, const Matrix B, Matrix C) 
 
    // Load A and B to device memory 
    Matrix d_A; 
    d_A.width = d_A.stride = A.width; d_A.height = A.height; 
    size_t size = A.width * A.height * sizeof(float); 
    cudaMalloc(&d_A.elements, size); 
    cudaMemcpy(d_A.elements, A.elements, size, cudaMemcpyHostToDevice); 
    Matrix d_B; 
    d_B.width = d_B.stride = B.width; d_B.height = B.height; 
    size = B.width * B.height * sizeof(float); 
    cudaMalloc(&d_B.elements, size); 
    cudaMemcpy(d_B.elements, B.elements, size, cudaMemcpyHostToDevice); 

    // Allocate C in device memory 
    Matrix d_C; 
    d_C.width = d_C.stride = C.width; d_C.height = C.height; 
    size = C.width * C.height * sizeof(float); 
    cudaMalloc(&d_C.elements, size); 

    // Invoke kernel 
    dim3 dimBlock(BLOCK_SIZE, BLOCK_SIZE); 
    dim3 dimGrid(B.width / dimBlock.x, A.height / dimBlock.y); 
    MatMulKernel<<<dimGrid, dimBlock>>>(d_A, d_B, d_C); 

    // Read C from device memory 
    cudaMemcpy(C.elements, d_C.elements, size, cudaMemcpyDeviceToHost); 

    // Free device memory 
    cudaFree(d_A.elements); 
    cudaFree(d_B.elements); 
    cudaFree(d_C.elements); 
 

// Matrix multiplication kernel called by MatMul() 
__global__ void MatMulKernel(Matrix A, Matrix B, Matrix C) 
 
    // Block row and column 
    int blockRow = blockIdx.y; 
    int blockCol = blockIdx.x; 

    // Each thread block computes one sub-matrix Csub of C 
    Matrix Csub = GetSubMatrix(C, blockRow, blockCol);

    // Each thread computes one element of Csub 
    // by accumulating results into Cvalue 
    float Cvalue = 0; 

    // Thread row and column within Csub 
    int row = threadIdx.y; 
    int col = threadIdx.x; 

    // Loop over all the sub-matrices of A and B that are 
    // required to compute Csub 
    // Multiply each pair of sub-matrices together 
    // and accumulate the results 
    for (int m = 0; m < (A.width / BLOCK_SIZE); ++m) 
     
        // Get sub-matrix Asub of A 
        Matrix Asub = GetSubMatrix(A, blockRow, m); 
        // Get sub-matrix Bsub of B 
        Matrix Bsub = GetSubMatrix(B, m, blockCol); 

        // Shared memory used to store Asub and Bsub respectively 
        __shared__ float As[BLOCK_SIZE][BLOCK_SIZE]; 
        __shared__ float Bs[BLOCK_SIZE][BLOCK_SIZE]; 

        // Load Asub and Bsub from device memory to shared memory 
        // Each thread loads one element of each sub-matrix 
        As[row][col] = GetElement(Asub, row, col); 
        Bs[row][col] = GetElement(Bsub, row, col); 

        // Synchronize to make sure the sub-matrices are loaded 
        // before starting the computation 
        __syncthreads(); 

        // Multiply Asub and Bsub together 
        for (int e = 0; e < BLOCK_SIZE; ++e) 
            Cvalue += As[row][e] * Bs[e][col]; 

        // Synchronize to make sure that the preceding 
        // computation is done before loading two new 
        // sub-matrices of A and B in the next iteration 
        __syncthreads(); 
     

    // Write Csub to device memory 
    // Each thread writes one element 
    SetElement(Csub, row, col, Cvalue); 

【问题讨论】:

我知道 NVIDIA 使用 CUDA 3.0 对其多设备 API 进行了一些改进。每次 CUDA 与 GPU 交互时,它都会在线程的上下文中执行此操作,如果您想与多个 GPU 交互,您必须自己手动执行此操作,无论是在代码中,但您还必须手动分解您希望的特定数学运算执行(在这种情况下,矩阵 mult,这可能并不难,但它也不是微不足道的东西,因为您需要类似 map/reduce 的方法)。编辑:如果您指定只是想要您正在寻找,它会更容易帮助您。 【参考方案1】:

没有在多个 GPU 上运行 CUDA 内核的“自动”方式。

您需要设计一种方法将矩阵乘法问题分解为可以并行运行的独立运算(因此每个 GPU 上并行运行一个运算)。举个简单的例子:

C = A.B 等价于C = [A].[B1|B2] = [A.B1|A.B2],其中B1B2 是大小合适的矩阵,包含矩阵B| 的列,表示按列连接。您可以将A.B1A.B2 计算为单独的矩阵乘法运算,然后在将生成的子矩阵复制回主机内存时执行连接。

一旦您有了合适的分解方案,您就可以使用 CUDA 4.x API 中的标准多 GPU 工具来实现它。要全面了解使用 CUDA API 进行多 GPU 编程,我建议观看 Paulius Micikevicius 在 GTC 2012 上的精彩演讲,该演讲以流视频和 PDF 格式提供 here。

【讨论】:

非常感谢您的所有回答。他们帮了很多忙。【参考方案2】:

基础知识在CUDA C Programming Guide under section 3.2.6.中描述

基本上,您可以通过调用 cudaSetDevice() 来设置当前主机线程在哪个 GPU 上运行。您仍然必须编写自己的代码,将您的例程分解为跨多个 GPU 拆分。

【讨论】:

以上是关于使用 2 个视频卡进行 CUDA C 编程的主要内容,如果未能解决你的问题,请参考以下文章

好消息 | OpenCV4 CUDA 加速视频教程来了...

Cuda ffmpeg 上的视频解码器

在内联 ptx 汇编 CUDA 中使用 SIMD 视频指令

如何使用 ffmpeg overlay_cuda 过滤器制作 SBS 视频?

CUDA Scalar 和 SIMD 视频指令的效率

CUDA 使用 NVIDIA 卡,视频使用主板