paper-with-me

Papers

MEC: Memory-efficient Convolution for Deep Neural Network

2017-06-21 · ICML 2017 8 · Minsik Cho, Daniel Brand

Convolution is a critical component in modern deep neural networks, thus several algorithms for convolution have been developed. Direct convolution is simple but suffers from poor performance. As an alternative, multiple indirect methods have been proposed including im2col-based convolution, FFT-based convolution, or Winograd-based algorithm. However, all these indirect methods have high memory-overhead, which creates performance degradation and offers a poor trade-off between performance and memory consumption. In this work, we propose a memory-efficient convolution or MEC with compact lowering, which reduces memory-overhead substantially and accelerates convolution process. MEC lowers the input matrix in a simple yet efficient/compact way (i.e., much less memory-overhead), and then executes multiple small matrix multiplications in parallel to get convolution completed. Additionally, the reduced memory footprint improves memory sub-system efficiency, improving performance. Our experimental results show that MEC reduces memory consumption significantly with good speedup on both mobile and server platforms, compared with other indirect convolution algorithms.

📄 PDF Abstract BibTeX arXiv:1706.06873

Code (0)

등록된 구현이 없습니다.

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…

Similar Papers 제목 키워드 기반

Im2win: An Efficient Convolution Paradigm on GPU

2023-06-25 · Shuai Lu, Jun Chu, Luanzheng Guo, Xu T. Liu

Convolution is the most time-consuming operation in deep neural network operations, so its performance is critical to the overall performance of the neural network. The commonly used methods for convolution on GPU includ…

GPU

Im2win: Memory Efficient Convolution On SIMD Architectures

2023-06-25 · Shuai Lu, Jun Chu, Xu T. Liu

Convolution is the most expensive operation among neural network operations, thus its performance is critical to the overall performance of neural networks. Commonly used convolution approaches, including general matrix …

Training convolutional neural networks with megapixel images

2018-04-16 · Hans Pinckaers, Geert Litjens

To train deep convolutional neural networks, the input data and the intermediate activations need to be kept in memory to calculate the gradient descent step. Given the limited memory available in the current generation …

Enabling Memory-efficient Im2win Convolution with Multi-precision Support on GPU CUDA and Tensor Cores

2026-08-21 · Xiang Fu, Jixiang Ma, Xinpeng Zhang, Peng Zhao 외 arxiv

Convolution is a principal computational bottleneck in deep neural networks, and its efficiency depends on tight integration between algorithms and GPU hardware. Existing GPU convolution methods suffer from large memory …

Convolutional Residual Memory Networks

2016-06-16 · Joel Moniz, Christopher Pal

Very deep convolutional neural networks (CNNs) yield state of the art results on a wide variety of visual recognition problems. A number of state of the the art methods for image recognition are based on networks with we…