# DeepShift: Towards Multiplication-Less Neural Networks

**Authors:** Mostafa Elhoushi, Zihao Chen, Farhan Shafiq, Ye Henry Tian, Joey Yiwei, Li

arXiv: 1905.13298 · 2021-07-09

## TL;DR

DeepShift introduces multiplication-less neural networks using shift and sign flip operations, significantly reducing computation and energy consumption while maintaining high accuracy, suitable for edge devices.

## Contribution

The paper proposes convolutional and fully-connected shift operations to replace multiplications, enabling efficient neural networks with minimal accuracy loss and reduced inference latency.

## Key findings

- Achieved comparable or higher accuracy than baseline models after conversion.
- Reduced GPU inference latency by 25% with shift-based kernels.
- Models require only 5 bits or less for weight representation.

## Abstract

The high computation, memory, and power budgets of inferring convolutional neural networks (CNNs) are major bottlenecks of model deployment to edge computing platforms, e.g., mobile devices and IoT. Moreover, training CNNs is time and energy-intensive even on high-grade servers. Convolution layers and fully connected layers, because of their intense use of multiplications, are the dominant contributor to this computation budget.   We propose to alleviate this problem by introducing two new operations: convolutional shifts and fully-connected shifts which replace multiplications with bitwise shift and sign flipping during both training and inference. During inference, both approaches require only 5 bits (or less) to represent the weights. This family of neural network architectures (that use convolutional shifts and fully connected shifts) is referred to as DeepShift models. We propose two methods to train DeepShift models: DeepShift-Q which trains regular weights constrained to powers of 2, and DeepShift-PS that trains the values of the shifts and sign flips directly.   Very close accuracy, and in some cases higher accuracy, to baselines are achieved. Converting pre-trained 32-bit floating-point baseline models of ResNet18, ResNet50, VGG16, and GoogleNet to DeepShift and training them for 15 to 30 epochs, resulted in Top-1/Top-5 accuracies higher than that of the original model.   Last but not least, we implemented the convolutional shifts and fully connected shift GPU kernels and showed a reduction in latency time of 25% when inferring ResNet18 compared to unoptimized multiplication-based GPU kernels. The code can be found at https://github.com/mostafaelhoushi/DeepShift.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1905.13298/full.md

## Figures

20 figures with captions in the complete paper: https://tomesphere.com/paper/1905.13298/full.md

## References

66 references — full list in the complete paper: https://tomesphere.com/paper/1905.13298/full.md

---
Source: https://tomesphere.com/paper/1905.13298