このドキュメントは、inference-nv-pytorch 26.02 のリリースノートを提供します。
機能と修正
機能
-
本リリースでは、CUDA 12.8 および CUDA 13.0 の 2 つの CUDA バージョンに対応するイメージを提供します。
-
CUDA 12.8 イメージは amd64 アーキテクチャのみをサポートします。
-
CUDA 13.0 イメージは amd64 および aarch64 アーキテクチャの両方をサポートします。
-
-
vLLM イメージにおいて、Torch が 2.10.0 に、vLLM が v0.15.1 にスペックアップされています。
-
SGLang イメージにおいて、Torch が 2.10.0 に、SGLang が v0.5.9 にスペックアップされています。
バグ修正
本リリースにはバグ修正はありません。
目次
|
イメージ名 |
inference-nv-pytorch |
|||||
|
タグ |
26.02-vllm0.15.1-pytorch2.10-cu128-20260211-serverless |
26.02-sglang0.5.9-pytorch2.10-cu128-20260227-serverless |
26.02-vllm0.15.1-pytorch2.10-cu130-20260211-serverless |
26.02-sglang0.5.9-pytorch2.10-cu130-20260227-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:26.02-vllm0.15.1-pytorch2.10-cu128-20260211-serverless
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.02-sglang0.5.9-pytorch2.10-cu128-20260227-serverless
CUDA 13.0 アセット
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.02-vllm0.15.1-pytorch2.10-cu130-20260211-serverless
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.02-sglang0.5.9-pytorch2.10-cu130-20260227-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 イメージを使用するには、コンソールでワークロードを作成する際に「アーティファクトセンター」ページでイメージを選択するか、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 helpful AI assistant."}, {"role": "user", "content": "Introduce deep learning."} ]}'vLLM の使用方法の詳細については、vLLM ドキュメントをご参照ください。
-
既知の問題
-
本リリースのイメージは、deepgpu-comfyui プラグインをサポートしていません。