This topic describes the release notes for inference-nv-pytorch 25.12.
Main features and bug fixes
Main features
-
This release includes images for two CUDA versions:
-
The CUDA 12.8 image supports only the amd64 architecture.
-
The CUDA 13.0 image supports both the amd64 and aarch64 architectures.
-
-
The vLLM images now use PyTorch 2.9.0, and the SGLang images use PyTorch 2.9.1.
-
In the CUDA 12.8 image,
deepgpu-comfyuiis now 1.3.2, and thedeepgpu-torchoptimization component is 0.1.12+torch2.9.0cu128. -
In both the CUDA 12.8 and CUDA 13.0 images, vLLM is now v0.12.0, and SGLang is v0.5.6.post2.
Bug fixes
None.
Contents
|
Image name |
inference-nv-pytorch |
|||||
|
Tag |
25.12-vllm0.12.0-pytorch2.9-cu128-20251215-serverless |
25.12-sglang0.5.6.post2-pytorch2.9-cu128-20251215-serverless |
25.12-vllm0.12.0-pytorch2.9-cu130-20251215-serverless |
25.12-sglang0.5.6.post2-pytorch2.9-cu130-20251215-serverless |
||
|
Supported architecture |
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 assets
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:25.12-vllm0.12.0-pytorch2.9-cu128-20251215-serverless
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:25.12-sglang0.5.6.post2-pytorch2.9-cu128-20251215-serverless
CUDA 13.0 assets
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:25.12-vllm0.12.0-pytorch2.9-cu130-20251215-serverless
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:25.12-sglang0.5.6.post2-pytorch2.9-cu130-20251215-serverless
VPC images
All existing and new ACS AI container images in the egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun repository support IN-VPC pulling.
Replace the public network registry host in your image URI with the region-specific VPC endpoint.
URI component | Public network | IN-VPC |
Registry host |
|
|
Repository |
|
|
Image and tag |
|
|
Replace {region-id} with the ID of the region where your ACS service runs. For example:
Region | Region ID |
China (Beijing) |
|
China (Ulanqab) |
|
For the full list of supported regions, see Regions.
Example {image:tag} values:
inference-nv-pytorch:25.10-vllm0.11.0-pytorch2.8-cu128-20251028-serverlesstraining-nv-pytorch:25.10-serverless
These images are suitable for ACS and multi-tenant Lingjun environments. They are not compatible with single-tenant Lingjun environments.
Driver requirements
-
CUDA 12.8: NVIDIA Driver release >= 570
-
CUDA 13.0: NVIDIA Driver release >= 580
Quick start
The following example shows how to pull the inference-nv-pytorch image by using Docker and test the inference service with the Qwen2.5-7B-Instruct model.
To use the inference-nv-pytorch image in ACS, select it from the Artifact Center page when you create a workload in the console, or specify the image reference in a YAML file. For more information about deploying model inference services with ACS GPU compute, 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 from ModelScope.
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 verify the vLLM conversational inference feature.
-
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 -
Run the test on 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 using vLLM, see the vLLM documentation.
-
Known issues
-
The
deepgpu-comfyuiplugin, which accelerates Wanx model video generation, currently supports only the GN8IS, G49E, and G59 instance types.