Fused BF16 Huffman GEMV Inference kernel
Project description
bf16_huffman_infer
This is a experimental implementation of fused Decompression-GEMV kernel, using the LUT-based Huffman compression purposed by DFloat11, to compress the exponential bits of the BF16 format. It provides reduced memory usage of the LLMs, while maintaining comparable decoding speed to the regular BF16 format.
The current fused kernel implementation only support batch_size<=8, otherwise it will fallback to the non-fused decompression then GEMM implementation. Due to the optimized data layout, it can achieve about 80%~90% decoding speed of the original model, while reducing the VRAM usage by ~25%. The compression ratio is slightly higher than the original DFloat11, but the decoding speed is much faster. On some bandwidth-limited GPUs, like RTX-4060ti, it can even achieve better decoding speed than the original BF16 model.
Installation
pip install bf16_huffman_infer
Requirements
- Python 3.9+
- PyTorch 2.7+
- Nvidia Turing or newer GPU
Usage
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer, TextStreamer, StaticCache
from bf16_huffman_infer import get_graphed_model, convert_all_linear
model = AutoModelForCausalLM.from_pretrained('Qwen/Qwen3-8B', torch_dtype='auto')
tok = AutoTokenizer.from_pretrained(path)
# currently only batch_size<=8 is supported
inputs = tok('"Hello, world!" is', return_tensors='pt')
# a single line to compress the model
# will use cuda:0 for computation, can be done in a few minutes
convert_all_linear(model.model, min_out_features=0)
model.cuda()
# graphed_model = model
# Optional, but necessary to get maximize decoding latency for small models
graphed_model = get_graphed_model(
model,
StaticCache(
model.config, max_batch_size=1, max_cache_len=1024,
device=model.device, dtype=model.config.torch_dtype,
)
)
graphed_model.generate(
**inputs.to(model.device), streamer=TextStreamer(tok), max_new_tokens=128,
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file bf16_huffman_infer-0.0.1.tar.gz.
File metadata
- Download URL: bf16_huffman_infer-0.0.1.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdd2b2c0f4b874917780662b45ef54195d2ad2b83c98931f4eb18b527d771daf
|
|
| MD5 |
1f977ad5422081971a3b9cd2eb6c144a
|
|
| BLAKE2b-256 |
b47d282b95b83fb54abea9c4748aa909052028b553f8b492f409f77fc930b204
|