本文介绍inference-nv-pytorch 25.10版本发布记录。
Main Features and Bug Fix Lists
Main Features
提供了CUDA12.8和CUDA13.0 2个CUDA版本的镜像,其中:
CUDA12.8镜像仅支持amd64架构。
CUDA13.0镜像支持amd64 & aarch64架构,支持L20A/20C机型/实例使用。
CUDA12.8镜像deepgpu-comfyui 升级至1.3.0,deepgpu-torch优化组件升级至0.1.6+torch2.8.0cu128。
CUDA13.0镜像Pytorch版本升级至2.9.0。
CUDA12.8和CUDA13.0镜像vLLM版本升级到v0.11.0,SGLang版本升级至v0.5.4。
Bug Fix
无
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 | ||
支持架构 | amd64 | amd64 | amd64 | aarch64 | amd64 | aarch64 |
应用场景 | 大模型推理 | 大模型推理 | 大模型推理 | 大模型推理 | 大模型推理 | 大模型推理 |
框架 | 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 |
系统组件 |
|
|
|
|
|
|
Asset
公网镜像
CUDA12.8 Asset
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
CUDA13.0 Asset
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镜像
acs-registry-vpc.{region-id}.cr.aliyuncs.com/egslingjun/{image:tag}
{region-id}为您使用的ACS产品所在的开服地域,比如:cn-beijing、cn-wulanchabu等。{image:tag}为实际镜像的名称和Tag。
Driver Requirements
CUDA12.8:NVIDIA Driver release >= 570
CUDA13.0:NVIDIA Driver release >= 580
Quick Start
以下示例内容仅通过Docker方式拉取inference-nv-pytorch镜像,并使用Qwen2.5-7B-Instruct模型测试推理服务。
在ACS中使用inference-nv-pytorch镜像需要通过控制台创建工作负载界面的制品中心页面选取,或者通过YAML文件指定镜像引用。更多详细操作,请参见使用ACS GPU算力构建模型推理服务系列内容:
拉取推理容器镜像。
docker pull egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:[tag]下载modelscope格式的开源模型。
pip install modelscope cd /mnt modelscope download --model Qwen/Qwen2.5-7B-Instruct --local_dir ./Qwen2.5-7B-Instruct启动以下命令进入容器。
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]执行推理测试,测试vLLM推理对话功能。
启动Sever服务。
python3 -m vllm.entrypoints.openai.api_server \ --model /mnt/Qwen2.5-7B-Instruct \ --trust-remote-code --disable-custom-all-reduce \ --tensor-parallel-size 1在Client端进行测试。
curl http://localhost:8000/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ "model": "/mnt/Qwen2.5-7B-Instruct", "messages": [ {"role": "system", "content": "你是个友善的AI助手。"}, {"role": "user", "content": "介绍一下深度学习。"} ]}'输出如下所示:

更多关于vLLM的使用方法请参见vLLM。
Known Issues
deepgpu-comfyui插件,加速Wanx模型视频生成,目前仅支持GN8IS、G49E。