使用 OpenMP 进行稀疏矩阵乘法缓存管理

标签 c openmp sparse-matrix matrix-multiplication

我认为我认为是一些错误的缓存存在问题,与非无与伦比的版本相比,使用以下代码时我只获得了很小的加速。

matrix1 和 matrix2 是具有 (row, col, val) 格式的结构中的稀疏矩阵。

void pMultiply(struct SparseRow *matrix1, struct SparseRow *matrix2, int m1Rows, int m2Rows, struct SparseRow **result) {

*result = malloc(1 * sizeof(struct SparseRow));

int resultNonZeroEntries = 0;

#pragma omp parallel for atomic
for(int i = 0; i < m1Rows; i++)
{
    int curM1Row = matrix1[i].row;
    int curM1Col = matrix1[i].col;
    float curM1Value = matrix1[i].val;

    for(int j = 0; j < m2Rows; j++)
    {

        int curM2Row = matrix2[j].row;
        int curM2Col = matrix2[j].col;
        float curM2Value = matrix2[j].val;

        if(curM1Col == curM2Row)
        {
            *result = realloc(*result, 
            (sizeof(struct SparseRow)*(resultNonZeroEntries+1)));

            (*result)[resultNonZeroEntries].row = curM1Row;
            (*result)[resultNonZeroEntries].col = curM2Col;
            (*result)[resultNonZeroEntries].val += curM1Value*curM2Value;
            resultNonZeroEntries++;
            break;
        }

    }
}

最佳答案

有几个问题:

  • 正如 Brian Brochers 所提到的,#pragma omp atomic 子句应该放在需要防止竞争条件的行之前。
  • 在每一步重新分配内存很可能是性能 killer 。如果内存不能就地重新分配并且需要复制到别处,这会很慢。它也是错误的来源,因为指针 result 的值被修改了。其他线程在重新分配发生时继续运行,并可能尝试访问“旧”地址处的内存,或者多个线程可能尝试同时重新分配 results。将整个 realloc + addition 部分放在关键部分会更安全,但本质上会序列化函数,但会以大量开销为代价来测试行/列索引的相等性。线程应该在本地缓冲区上工作,然后在稍后阶段合并它们的结果。重新分配应该由足够大的 block 来完成。

    // Make sure this will compile even without openmp + include memcpy
    #include <string.h>
    #ifdef _OPENMP
       #define thisThread omp_thread_num()
       #define nThreads omp_num_threads()
    #else
       #define  thisThread 0
       #define  nThreads 1
    #endif
    
    // shared variables
    int totalNonZero,*copyIndex,*threadNonZero;
    #pragma omp parallel
    {
    // each thread now initialize a local buffer and local variables 
    int localNonZero = 0;
    int allocatedSize = 1024;
    SparseRow *localResult = malloc(allocatedSize  * sizeof(*SparseRow));
    
    // one thread initialize an array
    #pragma omp single
    {
    threadNonZero=malloc(nThreads*sizeof(int));copyIndex=malloc((nThreads+1)*sizeof(int));
    }
    
    #pragma omp for
    for (int i = 0; i < m1Rows; i++){
        /* 
         * do the same as your initial code but:
         * realloc an extra 1024 lines each time localNonZeros exceeds allocatedSize
         * fill the local buffer and increment the localNonZeros counter
         * this is safe, no need to use critical / atomic clauses
         */
        }
    
    copyIndex[thisThread]=localNonZero; //put number of non zero into a shared variable
    #pragma omp barrier
    
    // Wrap_up : check how many non zero values for each thread, allocate the output and check where each thread will copy its local buffer
    #pragma omp single
    {
        copyIndex[0]=0;
        for (int i=0; i<nThreads; ii++)
            copyIndex[i+1]=localNonZero[i]+copyIndex[i];
        result=malloc(copyIndex[nThreads+1]*sizeof(*SparseRow));
    }
    
    // Copy the results from local to global result   memcpy(&result[copyIndex[thisThread]],localResult,localNonZero*sizeof(*SparseRow);
    
    // Free memory
    free(localResult);
    #pragma omp single
    {
    free(copyIndex);
    free(localNonZero);
    }
    } // end parallel
    
  • 请注意,该算法会生成重复项,例如如果第一个矩阵包含位置 (1,10) 和 (1,20) 以及第二个矩阵 (10,5) 和 (20,5) 的值,则结果中将有两行 (1,5)。在某些时候,将需要合并重复行的压缩功能。

关于使用 OpenMP 进行稀疏矩阵乘法缓存管理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53038117/

相关文章:

c++ - OpenMP 循环数组访问中的错误共享

matlab - 在 MATLAB 中按向量的元素缩放稀疏矩阵中的每一行

CUDA __global__ 函数未调用

c - 窗口没有出现在屏幕上

c++ - 如何在另一个正在运行的进程中找到自定义函数的地址以 Hook /绕行?

c - 计算机如何区分空终止符的位和整数 0?

c - openMP 的性能改进

c - 在哪里可以获得 OpenMP 的 .h 文件?

r - SLX 模型 - 使用 splm 包和 slag 函数在 R 数据中使用面板的空间计量经济学

r - 加速大型矩阵中的索引