Implementing Sparse Matrix-Vector Multiplication with Qcsr on Gpu

Jilin Zhang,Enyi Liu,Jian Wan,Yongjian Ren,Miao Yue,Jue Wang
DOI: https://doi.org/10.12785/amis/070207
2013-01-01
Applied Mathematics & Information Sciences
Abstract:We are going through the computation from single core to multicore architecture in parallel programming. Graphics Processor Units (GPUs) have recently emerged as outstanding platforms for data parallel applications with regular data access patterns. However, it is still challenging to optimize computations with irregular data access patterns like sparse matrix-vector multiplication (SPMV). SPMV is one of the most important computational kernels in engineering practice and scientific computation. Various data formats to store the sparse matrix have been implemented on GPUs to maximize the performance. In this paper, we propose and evaluate a new implementation of SPMV on GPU based on QCSR storage format which combines the quadtree storage format and CSR format. We also outline some optimization strategies to improve performance. In comparison with previously published implementation, it achieves higher overall performance than BCSR format. The results show that it achieves 1.15 speedup averagely than BCSR format.
What problem does this paper attempt to address?