paper-with-me

Papers

A Simple Sparse Matrix Vector Multiplication Approach to Padded Convolution

2024-11-29 · Zan Chaudhry

We introduce an algorithm for efficiently representing convolution with zero-padding and stride as a sparse transformation matrix, applied to a vectorized input through sparse matrix-vector multiplication (SpMV). We provide a theoretical contribution with an explicit expression for the number of non-zero multiplications in convolutions with stride and padding, offering insight into the potential for leveraging sparsity in convolution operations. A proof-of-concept implementation is presented in Python, demonstrating the performance of our method on both CPU and GPU architectures. This work contributes to the broader exploration of sparse matrix techniques in convolutional algorithms, with a particular focus on leveraging matrix multiplications for parallelization. Our findings lay the groundwork for future advancements in exploiting sparsity to improve the efficiency of convolution operations in fields such as machine learning and signal processing.

📄 PDF Abstract BibTeX arXiv:2411.19419

Code (1)

ZanChaudhry/SpMV_Conv 공식 구현

Tasks

CPUGPU

Methods 이 논문이 사용한 방법론

Convolution A convolution is a type of matrix operation, consisting of a kernel, a small matrix of weights, that slides over input data performing element-wise multiplication with the…
Focus 설명 없음

Similar Papers 제목 키워드 기반

Efficient Identification of Butterfly Sparse Matrix Factorizations

2021-10-04 · Léon Zheng, Elisa Riccietti, Rémi Gribonval

Fast transforms correspond to factorizations of the form $\mathbf{Z} = \mathbf{X}^{(1)} \ldots \mathbf{X}^{(J)}$, where each factor $ \mathbf{X}^{(\ell)}$ is sparse and possibly structured. This paper investigates essent…

Performance Optimization of Deep Learning Sparse Matrix Kernels on Intel Max Series GPU

2023-11-01 · Mohammad Zubair, Christoph Bauinger

In this paper, we focus on three sparse matrix operations that are relevant for machine learning applications, namely, the sparse-dense matrix multiplication (SPMM), the sampled dense-dense matrix multiplication (SDDMM),…

GPU

K-means clustering using random matrix sparsification

2018-07-01 · ICML 2018 7 · Kaushik Sinha

K-means clustering algorithm using Lloyd’s heuristic is one of the most commonly used tools in data mining and machine learning that shows promising performance. However, it suffers from a high computational cost re…

Clustering

AMULET: Adaptive Matrix-Multiplication-Like Tasks

2023-05-12 · Junyoung Kim, Kenneth Ross, Eric Sedlar, Lukas Stadler

Many useful tasks in data science and machine learning applications can be written as simple variations of matrix multiplication. However, users have difficulty performing such tasks as existing matrix/vector libraries s…

Compiler Optimization

VersaGNN: a Versatile accelerator for Graph neural networks

2021-05-04 · Feng Shi, Ahren Yiqiao Jin, Song-Chun Zhu

\textit{Graph Neural Network} (GNN) is a promising approach for analyzing graph-structured data that tactfully captures their dependency information via node-level message passing. It has achieved state-of-the-art perfor…

CPUGPUGraph GenerationGraph Matching+2