The inference-nv-pytorch 26.07 release upgrades vLLM to v0.25.1 and SGLang to v0.5.15.post1, and adds amd64 and aarch64 architecture support.
Main features and bug fixes
Main features
-
The vLLM image is upgraded to vLLM v0.25.1.
-
The SGLang image is upgraded to SGLang v0.5.15.post1.
-
The vLLM and SGLang images support the amd64 and aarch64 architectures.
Bug fixes
None
Contents
|
Image name |
inference-nv-pytorch |
|||
|
Tag |
26.07-vllm0.25.1-pytorch2.11-cu130-20260723-serverless |
26.07-sglang0.5.15.post1-pytorch2.11-cu130-20260715-serverless |
||
|
Supported architectures |
amd64 |
aarch64 |
amd64 |
aarch64 |
|
Scenario |
Large model inference |
Large model inference |
Large model inference |
Large model inference |
|
Framework |
pytorch |
pytorch |
pytorch |
pytorch |
|
Requirements |
NVIDIA Driver release >= 580 |
NVIDIA Driver release >= 580 |
NVIDIA Driver release >= 580 |
NVIDIA Driver release >= 580 |
|
System components |
|
|
|
|
Asset
Public images
CUDA 13.0 asset
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.07-vllm0.25.1-pytorch2.11-cu130-20260723-serverless
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.07-sglang0.5.15.post1-pytorch2.11-cu130-20260715-serverless
VPC images
To quickly pull ACS AI container images in a VPC, replace the Asset URI of the specified AI container image egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/{image:tag} with acs-registry-vpc.{region-id}.cr.aliyuncs.com/egslingjun/{image:tag}.
-
{region-id}: the region ID of the ACS product. For example,cn-beijingandcn-wulanchabu. -
{image:tag}: the name and tag of the AI container image. For example,inference-nv-pytorch:25.10-vllm0.11.0-pytorch2.8-cu128-20251028-serverlessandtraining-nv-pytorch:25.10-serverless.
These images are for ACS and EGS multi-tenant. Do not use them in EGS dedicated environments.
Driver requirements
-
CUDA 13.0: NVIDIA driver release ≥ 580
Quick start
This example shows how to pull the inference-nv-pytorch image using Docker and test the inference service with the Qwen2.5-7B-Instruct model.
To use the inference-nv-pytorch image in ACS, select the image from the Artifacts Center on the Create Workload page in the console. You can also specify the image reference in a YAML file. For more information, see the following topics about building model inference services with ACS GPU resources:
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-InstructRun the following command to enter the container.
docker run -d -t --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 for the vLLM conversational feature.
Start the server service.
python3 -m vllm.entrypoints.openai.api_server \ --model /mnt/Qwen2.5-7B-Instruct \ --trust-remote-code --disable-custom-all-reduce \ --tensor-parallel-size 1Test 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": "Introduce deep learning."} ]}'For more information about how to use vLLM, see vLLM.
Known issues
-
The images in this release do not support the deepgpu-comfyui plugin.