このドキュメントでは、inference-nv-pytorch 25.10 イメージのリリースノートについて説明します。
新機能
主な特徴
-
CUDA バージョンごとに 2 つのイメージが利用できます:
-
CUDA 12.8 イメージは amd64 アーキテクチャのみをサポートします。
-
CUDA 13.0 イメージは、amd64 と aarch64 の両方のアーキテクチャをサポートし。
-
-
CUDA 12.8 イメージでは、
deepgpu-comfyuiが 1.3.0 にアップグレードされ、deepgpu-torch最適化コンポーネントが 0.1.6+torch2.8.0cu128 にアップグレードされました。 -
CUDA 13.0 イメージでは、PyTorch が 2.9.0 にアップグレードされました。
-
CUDA 12.8 と CUDA 13.0 の両方のイメージで、vLLM は v0.11.0 に、SGLang は v0.5.4 にアップグレードされました。
バグ修正
このリリースにはバグ修正は含まれていません。
内容
|
inference-nv-pytorch |
||||||
|
タグ |
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 |
|
要件 |
NVIDIA ドライバーリリース >= 570 |
NVIDIA ドライバーリリース >= 570 |
NVIDIA ドライバーリリース >= 580 |
NVIDIA ドライバーリリース >= 580 |
NVIDIA ドライバーリリース >= 580 |
NVIDIA ドライバーリリース >= 580 |
|
システムコンポーネント |
|
|
|
|
|
|
アセット
パブリックイメージ
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 イメージ
acs-registry-vpc.{region-id}.cr.aliyuncs.com/egslingjun/{image:tag}
{region-id}は、ACS がアクティブ化されているリージョン (cn-beijing、cn-wulanchabu など) を示します。{image:tag}は、イメージの名前とタグを示します。
現在、VPC 経由でプルできるイメージは、中国 (北京) リージョンのイメージのみです。
ドライバー要件
-
CUDA 12.8:NVIDIA ドライバーリリース 570 以降が必要です。
-
CUDA 13.0:NVIDIA ドライバーリリース 580 以降が必要です。
クイックスタート
以下の例では、Docker を使用して inference-nv-pytorch イメージをプルし、Qwen2.5-7B-Instruct モデルで推論サービスをテストする方法を示します。
Alibaba Cloud コンテナサービスの 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 をご参照ください。
-
既知の問題
-
Wan モデルのビデオ生成を高速化する
deepgpu-comfyuiプラグインは、現在 GN8IS および G49E のインスタンスタイプにのみ対応しています。