forked from vllm-project/vllm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bitsandbytes]: support read bnb pre-quantized model (vllm-project#5753)
Co-authored-by: Michael Goin <michael@neuralmagic.com>
- Loading branch information
Showing
8 changed files
with
143 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
.. _bits_and_bytes: | ||
|
||
BitsAndBytes | ||
================== | ||
|
||
vLLM now supports `BitsAndBytes <https://github.com/TimDettmers/bitsandbytes>`_ for more efficient model inference. | ||
BitsAndBytes quantizes models to reduce memory usage and enhance performance without significantly sacrificing accuracy. | ||
Compared to other quantization methods, BitsAndBytes eliminates the need for calibrating the quantized model with input data. | ||
|
||
Below are the steps to utilize BitsAndBytes with vLLM. | ||
|
||
.. code-block:: console | ||
$ pip install bitsandbytes>=0.42.0 | ||
vLLM reads the model's config file and supports both in-flight quantization and pre-quantized checkpoint. | ||
|
||
You can find bitsandbytes quantized models on https://huggingface.co/models?other=bitsandbytes. | ||
And usually, these repositories have a config.json file that includes a quantization_config section. | ||
|
||
Read quantized checkpoint. | ||
-------------------------- | ||
|
||
.. code-block:: python | ||
from vllm import LLM | ||
import torch | ||
# unsloth/tinyllama-bnb-4bit is a pre-quantized checkpoint. | ||
model_id = "unsloth/tinyllama-bnb-4bit" | ||
llm = LLM(model=model_id, dtype=torch.bfloat16, trust_remote_code=True, \ | ||
quantization="bitsandbytes", load_format="bitsandbytes") | ||
Inflight quantization: load as 4bit quantization | ||
------------------------------------------------ | ||
|
||
.. code-block:: python | ||
from vllm import LLM | ||
import torch | ||
model_id = "huggyllama/llama-7b" | ||
llm = LLM(model=model_id, dtype=torch.bfloat16, trust_remote_code=True, \ | ||
quantization="bitsandbytes", load_format="bitsandbytes") | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters