PyTorch-Quantization is a toolkit for training and evaluating PyTorch models with simulated quantization. Quantization can be added to the model automatically, or manually, allowing the model to be tuned for accuracy and performance. Quantization is compatible with NVIDIAs high performance integer kernels which leverage integer Tensor Cores. The quantized model can be exported to ONNX and imported by TensorRT 8.0 and later.
pip install pytorch-quantization --extra-index-url https://pypi.ngc.nvidia.com
git clone https://github.com/NVIDIA/TensorRT.git
cd tools/pytorch-quantization
Install PyTorch and prerequisites
pip install -r requirements.txt
# for CUDA 10.2 users
pip install torch>=1.9.1
# for CUDA 11.1 users
pip install torch>=1.9.1+cu111
Build and install pytorch-quantization
# Python version >= 3.7, GCC version >= 5.4 required
python setup.py install
pytorch-quantization
is preinstalled in NVIDIA NGC PyTorch container, e.g. nvcr.io/nvidian/pytorch:21.09-py3
- Pytorch Quantization Toolkit userguide
- Quantization Basics whitepaper