このドキュメントは、inference-nv-pytorch 25.12 のリリースノートです。
主な機能とバグ修正
主な機能
本リリースでは、2 つの CUDA バージョン向けのイメージを提供します。
CUDA 12.8 イメージは amd64 アーキテクチャのみをサポートします。
CUDA 13.0 イメージは amd64 および aarch64 アーキテクチャをサポート。
PyTorch のバージョンは、vLLM イメージで 2.9.0 に、SGLang イメージで 2.9.1 にスペックアップされています。
CUDA 12.8 イメージにおいて、deepgpu-comfyui は 1.3.2 に、deepgpu-torch 最適化コンポーネントは 0.1.12+torch2.9.0cu128 にスペックアップされています。
CUDA 12.8 および 13.0 の両方のイメージにおいて、vLLM は v0.12.0 に、SGLang は v0.5.6.post2 にスペックアップされています。
バグ修正
本リリースにはバグ修正は含まれていません。
内容
イメージ名 | inference-nv-pytorch | |||||
タグ | 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 | ||
サポートされるアーキテクチャ | amd64 | amd64 | amd64 | aarch64 | amd64 | aarch64 |
ユースケース | 大規模モデル推論 | 大規模モデル推論 | 大規模モデル推論 | 大規模モデル推論 | 大規模モデル推論 | 大規模モデル推論 |
フレームワーク | pytorch | pytorch | pytorch | pytorch | pytorch | pytorch |
要件 | NVIDIA Driver リリース >= 570 | NVIDIA Driver リリース >= 570 | NVIDIA Driver リリース >= 580 | NVIDIA Driver リリース >= 580 | NVIDIA Driver リリース >= 580 | NVIDIA Driver リリース >= 580 |
システムコンポーネント |
|
|
|
|
|
|
アセット
パブリックイメージ
CUDA 12.8 アセット
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 アセット
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 イメージ
これらのイメージは ACS およびマルチテナント Lingjun サービス用です。シングルテナント Lingjun サービスではこれらのイメージを使用しないでください。
ドライバー要件
CUDA 12.8:NVIDIA Driver リリース >= 570
CUDA 13.0:NVIDIA Driver リリース >= 580
クイックスタート
以下の例では、Docker を使用して inference-nv-pytorch イメージをプルし、Qwen2.5-7B-Instruct モデルで推論サービスをテストする方法を示します。
ACS で inference-nv-pytorch イメージを使用するには、コンソールでワークロードを作成する際に Artifact Center ページからイメージを選択するか、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 -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]vLLM の対話型推論機能をテストします。
サーバー側のサービスを起動します。
python3 -m vllm.entrypoints.openai.api_server \ --model /mnt/Qwen2.5-7B-Instruct \ --trust-remote-code --disable-custom-all-reduce \ --tensor-parallel-size 1クライアント側でテストします。
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."} ]}'vLLM の詳細については、「vLLM」をご参照ください。
既知の問題
deepgpu-comfyui プラグインは Wanx モデルの動画生成を高速化します。現在、GN8IS、G49E、および G59 のみをサポートしています。