neural-boost

Neural Booster targeting to boost inference performance.


Keywords
inference, machine, learning, x86, x86_64, avx512, neural, network
License
Apache-2.0
Install
pip install neural-boost==0.0.5

Documentation

Neural Boost

Neural Boost targeting to boost inference performance.

It could boost operaters inference performance by 3-8x:

  1. Repalce nn.LSTM by nb.LSTM
  2. Replace nn.GRU by nb.GRU

Package: https://pypi.org/project/neural-boost/

How to test

$ git clone https://github.com/neural-boost/neural-boost.git
$ bash scripts/build-env.sh
$ source venv-py3.6-torch1.9.0/bin/activate
$ bash run.sh

How to use

$ pip3 install neural-boost -i https://pypi.org/simple
from neural_boost import nb

nb.LSTM(...)
nb.GRU(...)