このドキュメントは、inference-nv-pytorch 26.03 のリリースノートを提供します。
主な機能とバグ修正
主な機能
-
本リリースでは、2 つの CUDA バージョン(CUDA 12.8 および CUDA 13.0)向けのイメージを提供します。
-
CUDA 12.8 イメージは amd64 アーキテクチャのみをサポートします。
-
CUDA 13.0 イメージは amd64 および aarch64 アーキテクチャの両方をサポートします。
-
-
vLLM のバージョンが v0.17.1 にスペックアップされ、Qwen2.5 モデルがサポートされるようになりました。
バグ修正
なし。
コンテンツ
|
イメージ名 |
inference-nv-pytorch |
||
|
タグ |
26.03-vllm0.17.1-pytorch2.10-cu128-20260317-serverless |
26.03-vllm0.17.1-pytorch2.10-cu130-20260317-serverless |
|
|
サポート対象アーキテクチャ |
amd64 |
amd64 |
aarch64 |
|
ユースケース |
large model inference |
large model inference |
large model inference |
|
フレームワーク |
PyTorch |
PyTorch |
PyTorch |
|
要件 |
NVIDIA Driver release >= 570 |
NVIDIA Driver release >= 580 |
NVIDIA Driver release >= 580 |
|
システムコンポーネント |
|
|
|
アセット
パブリックイメージ
CUDA 12.8 アセット
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.03-vllm0.17.1-pytorch2.10-cu128-20260317-serverless
CUDA 13.0 アセット
-
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.03-vllm0.17.1-pytorch2.10-cu130-20260317-serverless
VPC イメージ
このイメージは ACS プロダクトおよび Lingjun マルチテナントモード向けに設計されています。Lingjun シングルテナントモードとは互換性がありません。
ドライバー要件
-
CUDA 12.8:NVIDIA Driver release >= 570
-
CUDA 13.0:NVIDIA Driver release >= 580
クイックスタート
この例では、Docker を使用して inference-nv-pytorch イメージをプルし、Qwen2.5-7B-Instruct モデルで推論サービスをテストする方法を示します。
ACS で inference-nv-pytorch イメージを使用するには、コンソールでワークロードを作成する際に Artifact Center ページからイメージを選択するか、YAML ファイルでイメージリファレンスを指定してください。詳細については、以下のトピックをご参照ください。
-
コンテナイメージをプルします。
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 documentation」をご参照ください。
-
既知の問題
-
本バージョンのイメージは deepgpu-comfyui プラグインをサポートしていません。