This document provides the release notes for the inference-nv-pytorch 25.10 images.
What's new
Key features
-
Two images are now available for different CUDA versions:
-
The CUDA 12.8 image supports only the amd64 architecture.
-
The CUDA 13.0 image supports both the amd64 and aarch64 architectures.
-
-
In the CUDA 12.8 image,
deepgpu-comfyuiis upgraded to 1.3.0, and thedeepgpu-torchoptimization component is upgraded to 0.1.6+torch2.8.0cu128. -
In the CUDA 13.0 image, PyTorch is upgraded to 2.9.0.
-
In both the CUDA 12.8 and CUDA 13.0 images, vLLM is upgraded to v0.11.0, and SGLang is upgraded to v0.5.4.
Bug fixes
No bug fixes are included in this release.
Contents
|
inference-nv-pytorch |
||||||
|
Tag |
25.10-vllm0.11.0-pytorch2.8-cu128-20251028-serverless |
25.10-sglang0.5.4-pytorch2.8-cu128-20251027-serverless |
25.10-vllm0.11.0-pytorch2.9-cu130-20251028-serverless |
25.10-sglang0.5.4-pytorch2.9-cu130-20251028-serverless |
||
|
Supported architectures |
amd64 |
amd64 |
amd64 |
aarch64 |
amd64 |
aarch64 |
|
Use case |
large model inference |
large model inference |
large model inference |
large model inference |
large model inference |
large model inference |
|
Framework |
PyTorch |
PyTorch |
PyTorch |
PyTorch |
PyTorch |
PyTorch |
|
Requirements |
NVIDIA Driver release >= 570 |
NVIDIA Driver release >= 570 |
NVIDIA Driver release >= 580 |
NVIDIA Driver release >= 580 |
NVIDIA Driver release >= 580 |
NVIDIA Driver release >= 580 |
|
System components |
|
|
|
|
|
|
Assets
Public images
CUDA 12.8
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:25.10-vllm0.11.0-pytorch2.8-cu128-20251028-serverless
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:25.10-sglang0.5.4-pytorch2.8-cu128-20251027-serverless
CUDA 13.0
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:25.10-vllm0.11.0-pytorch2.9-cu130-20251028-serverless
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:25.10-sglang0.5.4-pytorch2.9-cu130-20251028-serverless
VPC image
acs-registry-vpc.{region-id}.cr.aliyuncs.com/egslingjun/{image:tag}Replace{region-id}with the region where your Alibaba Cloud Container Compute Service (ACS) is activated (for example,cn-beijingorcn-wulanchabu).
Replace {image:tag} with the name and tag of the image.The inference-nv-pytorch:25.03-vllm0.8.2-pytorch2.6-cu124-20250328-serverless and inference-nv-pytorch:25.03-sglang0.4.4.post1-pytorch2.5-cu124-20250327-serverless images are compatible with ACS and Lingjun multi-tenant deployments only. It is not compatible with Lingjun single-tenant deployments.
Driver requirements
-
CUDA 12.8: Requires NVIDIA Driver release 570 or later.
-
CUDA 13.0: Requires NVIDIA Driver release 580 or later.
Quick start
The following example shows how to pull the inference-nv-pytorch image with Docker and test the inference service with the Qwen2.5-7B-Instruct model.
For more information about building model inference services with Alibaba Cloud Container Service GPU compute power, see the following topics:
-
Pull the inference container image.
docker pull egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:[tag] -
Download the open-source model in ModelScope format.
pip install modelscope cd /mnt modelscope download --model Qwen/Qwen2.5-7B-Instruct --local_dir ./Qwen2.5-7B-Instruct -
Run the following command to start and enter the container.
docker run -it --rm --gpus all --network=host --privileged --init --ipc=host \ --ulimit memlock=-1 --ulimit stack=67108864 \ -v /mnt/:/mnt/ \ egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:[tag] -
Run an inference test to validate the vLLM chat capability.
-
Start the server.
python3 -m vllm.entrypoints.openai.api_server \ --model /mnt/Qwen2.5-7B-Instruct \ --trust-remote-code --disable-custom-all-reduce \ --tensor-parallel-size 1 -
Send a test request from the client.
curl http://localhost:8000/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ "model": "/mnt/Qwen2.5-7B-Instruct", "messages": [ {"role": "system", "content": "You are a friendly AI assistant."}, {"role": "user", "content": "Tell me about deep learning."} ]}'For more information about vLLM, see vLLM.
-
Known issues
-
The
deepgpu-comfyuiplugin, which accelerates Wan model video generation, currently supports only the GN8IS and G49E instance types.