This project is specifically developed for V100, based on lmdeploy 0.12.1, and supports mainstream open-source models from Q4 2025 to Q1 2026. It does not account for compatibility with other architectures and has only been tested on an 8-card V100 32GB setup.
21
stars
6
commits
Python
primary language
Mar 18, 2026
updated
This project is developed specifically for V100, based on lmdeploy 0.12.1. It adds support for mainstream open-source models from 2025Q4 to 2026Q1 that I personally wanted to use. No effort has been made to ensure compatibility with other architectures — only verified on 8× V100 32GB. Due to the massive amount of work involved, merging back into the upstream project would be very difficult, so it is released independently first, for fellow V100 owners to enjoy. PRs are welcome.
Supported models:
Qwen3.5-122B-A10B-AWQ-4bit, Qwen3.5-35B-A3B-AWQ, Qwen3.5-27B-AWQ-4bit, Qwen3.5-9B-AWQ-4bit, Qwen3.5-4B-AWQ-4bit, Qwen3.5-2B, Qwen3.5-0.8B (multimodal with video support, MTP)
MiniMax-M2.5-AWQ, MiniMax-M2.1-AWQ
Step-3.5-Flash-int4-mixed-AutoRound (MTP supported), Step-3.5-Flash-AWQ-4bit (this model does not include MTP layers)
Qwen3-Coder-Next-AWQ-4bit, Qwen3-Next-80B-A3B-Thinking-AWQ-4bit
New features:
Anthropic API
AutoRound & compressed-tensors quantization support
GGUF support (in progress)
V100 low-level MMA_884 kernel refactoring (in progress)
# 1. Clone the repository
git clone https://github.com/zh-nj/lmdeploy-v100.git
cd lmdeploy-v100
# 2. Create a conda environment (Python 3.10 recommended)
conda create -n lmdeploy python=3.10 -y
conda activate lmdeploy
# 3. Install PyTorch (CUDA 11.8 example, adjust for your CUDA version)
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu118
# 4. Install in development mode (automatically compiles C++/CUDA)
pip install -e .
# For all optional dependencies:
# pip install -e ".[all]"
Build requires CMake 3.11+, Ninja, and GCC with C++17 support. V100 users should ensure
CUDA_DEVICE_ORDER=PCI_BUS_IDis set.
All examples use the TurboMind engine (lmdeploy serve api_server). Replace model paths with your actual paths.
# Qwen3.5-122B-A10B-AWQ (MoE, TP=8)
lmdeploy serve api_server /path/to/Qwen3.5-122B-A10B-AWQ \
--tp 8 --dtype float16 --session-len 8192 \
--cache-max-entry-count 0.7 \
--tool-call-parser qwen3_5 --reasoning-parser deepseek-r1
# Qwen3.5-35B-A3B-AWQ (MoE, TP=4)
lmdeploy serve api_server /path/to/Qwen3.5-35B-A3B-AWQ \
--tp 4 --dtype float16 --cache-max-entry-count 0.7 \
--tool-call-parser qwen3_5 --reasoning-parser deepseek-r1
# Qwen3.5-27B-AWQ (Dense, TP=4)
lmdeploy serve api_server /path/to/Qwen3.5-27B-AWQ \
--tp 4 --dtype float16 --cache-max-entry-count 0.7 \
--tool-call-parser qwen3_5 --reasoning-parser deepseek-r1
# Qwen3.5-9B-AWQ / 4B-AWQ (TP=1 or TP=2)
lmdeploy serve api_server /path/to/Qwen3.5-9B-AWQ \
--tp 1 --dtype float16 --cache-max-entry-count 0.8
# Qwen3.5-2B / 0.8B (small models, TP=1)
lmdeploy serve api_server /path/to/Qwen3.5-2B \
--tp 1 --dtype float16
# Add --num-draft-tokens 1 to any command above
lmdeploy serve api_server /path/to/Qwen3.5-27B-AWQ \
--tp 4 --dtype float16 --num-draft-tokens 1 \
--cache-max-entry-count 0.4
Multimodal inputs are passed via the OpenAI-compatible API using image_url / video_url fields. No extra launch parameters needed.
# MiniMax-M2.5-AWQ (TP=8)
lmdeploy serve api_server /path/to/MiniMax-M2.5-AWQ \
--tp 8 --dtype float16 --cache-max-entry-count 0.7 \
--tool-call-parser minimax-m2 --reasoning-parser minimax-m2
# MiniMax-M2.1-AWQ (TP=8)
lmdeploy serve api_server /path/to/MiniMax-M2.1-AWQ \
--tp 8 --dtype float16 --cache-max-entry-count 0.7
# Step-3.5-Flash AutoRound int4 mixed quantization (TP=8, MTP supported)
lmdeploy serve api_server /path/to/Step-3.5-Flash-int4-mixed-AutoRound \
--tp 8 --dtype float16 --session-len 8192 \
--num-draft-tokens 1 \
--tool-call-parser step3p5 --reasoning-parser step3p5
# Step-3.5-Flash AWQ (TP=8, no MTP layers)
lmdeploy serve api_server /path/to/Step-3.5-Flash-AWQ \
--tp 8 --dtype float16 --session-len 8192 \
--tool-call-parser step3p5 --reasoning-parser step3p5
# Qwen3-Coder-Next-AWQ (MoE, TP=4)
lmdeploy serve api_server /path/to/Qwen3-Coder-Next-AWQ-4bit \
--tp 4 --dtype float16 --cache-max-entry-count 0.4 \
--num-draft-tokens 1
# Qwen3-Next-80B-A3B-Thinking-AWQ (MoE, TP=4)
lmdeploy serve api_server /path/to/Qwen3-Next-80B-A3B-Thinking-AWQ-4bit \
--tp 4 --dtype float16 --cache-max-entry-count 0.7
LMDeploy is a toolkit for compressing, deploying, and serving LLM, developed by the MMRazor and MMDeploy teams. It has the following core features:
Efficient Inference: LMDeploy delivers up to 1.8x higher request throughput than vLLM, by introducing key features like persistent batch(a.k.a. continuous batching), blocked KV cache, dynamic split&fuse, tensor parallelism, high-performance CUDA kernels and so on.
Effective Quantization: LMDeploy supports weight-only and k/v quantization, and the 4-bit inference performance is 2.4x higher than FP16. The quantization quality has been confirmed via OpenCompass evaluation.
Effortless Distribution Server: Leveraging the request distribution service, LMDeploy facilitates an easy and efficient deployment of multi-model services across multiple machines and cards.
Excellent Compatibility: LMDeploy supports KV Cache Quant, AWQ and Automatic Prefix Caching to be used simultaneously.
| LLMs | VLMs |
|
|
LMDeploy has developed two inference engines - TurboMind and PyTorch, each with a different focus. The former strives for ultimate optimization of inference performance, while the latter, developed purely in Python, aims to decrease the barriers for developers.
They differ in the types of supported models and the inference data type. Please refer to this table for each engine's capability and choose the proper one that best fits your actual needs.
It is recommended installing lmdeploy using pip in a conda environment (python 3.10 - 3.13):
conda create -n lmdeploy python=3.10 -y
conda activate lmdeploy
pip install lmdeploy
The default prebuilt package is compiled on CUDA 12 since v0.3.0.
For the GeForce RTX 50 series, please install the LMDeploy prebuilt package complied with CUDA 12.8
export LMDEPLOY_VERSION=0.12.0
export PYTHON_VERSION=310
pip install https://github.com/InternLM/lmdeploy/releases/download/v${LMDEPLOY_VERSION}/lmdeploy-${LMDEPLOY_VERSION}+cu128-cp${PYTHON_VERSION}-cp${PYTHON_VERSION}-manylinux2014_x86_64.whl --extra-index-url https://download.pytorch.org/whl/cu128
For more information on installing on CUDA 11+ platform, or for instructions on building from source, please refer to the installation guide.
import lmdeploy
with lmdeploy.pipeline("internlm/internlm3-8b-instruct") as pipe:
response = pipe(["Hi, pls intro yourself", "Shanghai is"])
print(response)
[!NOTE] By default, LMDeploy downloads model from HuggingFace. If you would like to use models from ModelScope, please install ModelScope by
pip install modelscopeand set the environment variable:
export LMDEPLOY_USE_MODELSCOPE=TrueIf you would like to use models from openMind Hub, please install openMind Hub by
pip install openmind_huband set the environment variable:
export LMDEPLOY_USE_OPENMIND_HUB=True
For more information about inference pipeline, please refer to here.
Please review getting_started section for the basic usage of LMDeploy.
For detailed user guides and advanced guides, please refer to our tutorials:
Deploying LLMs offline on the NVIDIA Jetson platform by LMDeploy: LMDeploy-Jetson
Example project for deploying LLMs using LMDeploy and BentoML: BentoLMDeploy
We appreciate all contributions to LMDeploy. Please refer to CONTRIBUTING.md for the contributing guideline.
@misc{2023lmdeploy,
title={LMDeploy: A Toolkit for Compressing, Deploying, and Serving LLM},
author={LMDeploy Contributors},
howpublished = {\url{https://github.com/InternLM/lmdeploy}},
year={2023}
}
@article{zhang2025efficient,
title={Efficient Mixed-Precision Large Language Model Inference with TurboMind},
author={Zhang, Li and Jiang, Youhe and He, Guoliang and Chen, Xin and Lv, Han and Yao, Qian and Fu, Fangcheng and Chen, Kai},
journal={arXiv preprint arXiv:2508.15601},
year={2025}
}
This project is released under the Apache 2.0 license.
6 commits
Python
63.9%
C++
22.6%
Cuda
12.4%
This project is specifically developed for V100, based on lmdeploy 0.12.1, and supports mainstream open-source models from Q4 2025 to Q1 2026. It does not account for compatibility with other architectures and has only been tested on an 8-card V100 32GB setup.
21
stars
6
commits
Python
primary language
Mar 18, 2026
updated
This project is developed specifically for V100, based on lmdeploy 0.12.1. It adds support for mainstream open-source models from 2025Q4 to 2026Q1 that I personally wanted to use. No effort has been made to ensure compatibility with other architectures — only verified on 8× V100 32GB. Due to the massive amount of work involved, merging back into the upstream project would be very difficult, so it is released independently first, for fellow V100 owners to enjoy. PRs are welcome.
Supported models:
Qwen3.5-122B-A10B-AWQ-4bit, Qwen3.5-35B-A3B-AWQ, Qwen3.5-27B-AWQ-4bit, Qwen3.5-9B-AWQ-4bit, Qwen3.5-4B-AWQ-4bit, Qwen3.5-2B, Qwen3.5-0.8B (multimodal with video support, MTP)
MiniMax-M2.5-AWQ, MiniMax-M2.1-AWQ
Step-3.5-Flash-int4-mixed-AutoRound (MTP supported), Step-3.5-Flash-AWQ-4bit (this model does not include MTP layers)
Qwen3-Coder-Next-AWQ-4bit, Qwen3-Next-80B-A3B-Thinking-AWQ-4bit
New features:
Anthropic API
AutoRound & compressed-tensors quantization support
GGUF support (in progress)
V100 low-level MMA_884 kernel refactoring (in progress)
# 1. Clone the repository
git clone https://github.com/zh-nj/lmdeploy-v100.git
cd lmdeploy-v100
# 2. Create a conda environment (Python 3.10 recommended)
conda create -n lmdeploy python=3.10 -y
conda activate lmdeploy
# 3. Install PyTorch (CUDA 11.8 example, adjust for your CUDA version)
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu118
# 4. Install in development mode (automatically compiles C++/CUDA)
pip install -e .
# For all optional dependencies:
# pip install -e ".[all]"
Build requires CMake 3.11+, Ninja, and GCC with C++17 support. V100 users should ensure
CUDA_DEVICE_ORDER=PCI_BUS_IDis set.
All examples use the TurboMind engine (lmdeploy serve api_server). Replace model paths with your actual paths.
# Qwen3.5-122B-A10B-AWQ (MoE, TP=8)
lmdeploy serve api_server /path/to/Qwen3.5-122B-A10B-AWQ \
--tp 8 --dtype float16 --session-len 8192 \
--cache-max-entry-count 0.7 \
--tool-call-parser qwen3_5 --reasoning-parser deepseek-r1
# Qwen3.5-35B-A3B-AWQ (MoE, TP=4)
lmdeploy serve api_server /path/to/Qwen3.5-35B-A3B-AWQ \
--tp 4 --dtype float16 --cache-max-entry-count 0.7 \
--tool-call-parser qwen3_5 --reasoning-parser deepseek-r1
# Qwen3.5-27B-AWQ (Dense, TP=4)
lmdeploy serve api_server /path/to/Qwen3.5-27B-AWQ \
--tp 4 --dtype float16 --cache-max-entry-count 0.7 \
--tool-call-parser qwen3_5 --reasoning-parser deepseek-r1
# Qwen3.5-9B-AWQ / 4B-AWQ (TP=1 or TP=2)
lmdeploy serve api_server /path/to/Qwen3.5-9B-AWQ \
--tp 1 --dtype float16 --cache-max-entry-count 0.8
# Qwen3.5-2B / 0.8B (small models, TP=1)
lmdeploy serve api_server /path/to/Qwen3.5-2B \
--tp 1 --dtype float16
# Add --num-draft-tokens 1 to any command above
lmdeploy serve api_server /path/to/Qwen3.5-27B-AWQ \
--tp 4 --dtype float16 --num-draft-tokens 1 \
--cache-max-entry-count 0.4
Multimodal inputs are passed via the OpenAI-compatible API using image_url / video_url fields. No extra launch parameters needed.
# MiniMax-M2.5-AWQ (TP=8)
lmdeploy serve api_server /path/to/MiniMax-M2.5-AWQ \
--tp 8 --dtype float16 --cache-max-entry-count 0.7 \
--tool-call-parser minimax-m2 --reasoning-parser minimax-m2
# MiniMax-M2.1-AWQ (TP=8)
lmdeploy serve api_server /path/to/MiniMax-M2.1-AWQ \
--tp 8 --dtype float16 --cache-max-entry-count 0.7
# Step-3.5-Flash AutoRound int4 mixed quantization (TP=8, MTP supported)
lmdeploy serve api_server /path/to/Step-3.5-Flash-int4-mixed-AutoRound \
--tp 8 --dtype float16 --session-len 8192 \
--num-draft-tokens 1 \
--tool-call-parser step3p5 --reasoning-parser step3p5
# Step-3.5-Flash AWQ (TP=8, no MTP layers)
lmdeploy serve api_server /path/to/Step-3.5-Flash-AWQ \
--tp 8 --dtype float16 --session-len 8192 \
--tool-call-parser step3p5 --reasoning-parser step3p5
# Qwen3-Coder-Next-AWQ (MoE, TP=4)
lmdeploy serve api_server /path/to/Qwen3-Coder-Next-AWQ-4bit \
--tp 4 --dtype float16 --cache-max-entry-count 0.4 \
--num-draft-tokens 1
# Qwen3-Next-80B-A3B-Thinking-AWQ (MoE, TP=4)
lmdeploy serve api_server /path/to/Qwen3-Next-80B-A3B-Thinking-AWQ-4bit \
--tp 4 --dtype float16 --cache-max-entry-count 0.7
LMDeploy is a toolkit for compressing, deploying, and serving LLM, developed by the MMRazor and MMDeploy teams. It has the following core features:
Efficient Inference: LMDeploy delivers up to 1.8x higher request throughput than vLLM, by introducing key features like persistent batch(a.k.a. continuous batching), blocked KV cache, dynamic split&fuse, tensor parallelism, high-performance CUDA kernels and so on.
Effective Quantization: LMDeploy supports weight-only and k/v quantization, and the 4-bit inference performance is 2.4x higher than FP16. The quantization quality has been confirmed via OpenCompass evaluation.
Effortless Distribution Server: Leveraging the request distribution service, LMDeploy facilitates an easy and efficient deployment of multi-model services across multiple machines and cards.
Excellent Compatibility: LMDeploy supports KV Cache Quant, AWQ and Automatic Prefix Caching to be used simultaneously.
| LLMs | VLMs |
|
|
LMDeploy has developed two inference engines - TurboMind and PyTorch, each with a different focus. The former strives for ultimate optimization of inference performance, while the latter, developed purely in Python, aims to decrease the barriers for developers.
They differ in the types of supported models and the inference data type. Please refer to this table for each engine's capability and choose the proper one that best fits your actual needs.
It is recommended installing lmdeploy using pip in a conda environment (python 3.10 - 3.13):
conda create -n lmdeploy python=3.10 -y
conda activate lmdeploy
pip install lmdeploy
The default prebuilt package is compiled on CUDA 12 since v0.3.0.
For the GeForce RTX 50 series, please install the LMDeploy prebuilt package complied with CUDA 12.8
export LMDEPLOY_VERSION=0.12.0
export PYTHON_VERSION=310
pip install https://github.com/InternLM/lmdeploy/releases/download/v${LMDEPLOY_VERSION}/lmdeploy-${LMDEPLOY_VERSION}+cu128-cp${PYTHON_VERSION}-cp${PYTHON_VERSION}-manylinux2014_x86_64.whl --extra-index-url https://download.pytorch.org/whl/cu128
For more information on installing on CUDA 11+ platform, or for instructions on building from source, please refer to the installation guide.
import lmdeploy
with lmdeploy.pipeline("internlm/internlm3-8b-instruct") as pipe:
response = pipe(["Hi, pls intro yourself", "Shanghai is"])
print(response)
[!NOTE] By default, LMDeploy downloads model from HuggingFace. If you would like to use models from ModelScope, please install ModelScope by
pip install modelscopeand set the environment variable:
export LMDEPLOY_USE_MODELSCOPE=TrueIf you would like to use models from openMind Hub, please install openMind Hub by
pip install openmind_huband set the environment variable:
export LMDEPLOY_USE_OPENMIND_HUB=True
For more information about inference pipeline, please refer to here.
Please review getting_started section for the basic usage of LMDeploy.
For detailed user guides and advanced guides, please refer to our tutorials:
Deploying LLMs offline on the NVIDIA Jetson platform by LMDeploy: LMDeploy-Jetson
Example project for deploying LLMs using LMDeploy and BentoML: BentoLMDeploy
We appreciate all contributions to LMDeploy. Please refer to CONTRIBUTING.md for the contributing guideline.
@misc{2023lmdeploy,
title={LMDeploy: A Toolkit for Compressing, Deploying, and Serving LLM},
author={LMDeploy Contributors},
howpublished = {\url{https://github.com/InternLM/lmdeploy}},
year={2023}
}
@article{zhang2025efficient,
title={Efficient Mixed-Precision Large Language Model Inference with TurboMind},
author={Zhang, Li and Jiang, Youhe and He, Guoliang and Chen, Xin and Lv, Han and Yao, Qian and Fu, Fangcheng and Chen, Kai},
journal={arXiv preprint arXiv:2508.15601},
year={2025}
}
This project is released under the Apache 2.0 license.
6 commits
Python
63.9%
C++
22.6%
Cuda
12.4%