すべてのプロダクト
Search
ドキュメントセンター

Container Compute Service:inference-nv-pytorch 26.03

最終更新日:May 10, 2026

このドキュメントは、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

システムコンポーネント

  • Ubuntu 24.04

  • Python 3.12

  • Torch 2.10.0

  • CUDA 12.8

  • NCCL 2.29.7

  • diffusers 0.37.0

  • flash_attn 2.8.4

  • flash_attn_3 3.0.0

  • flashinfer-python 0.6.4

  • imageio-ffmpeg 0.6.0

  • ray 2.54.0

  • transformers 4.57.6

  • triton 3.6.0

  • torchaudio 2.10.0

  • torchvision 0.25.0

  • vllm 0.17.1

  • xfuser 0.4.5

  • xgrammar 0.1.29

  • Ubuntu 24.04

  • Python 3.12

  • Torch 2.10.0+cu130

  • CUDA 13.0.2

  • NCCL 2.29.7

  • diffusers 0.37.0

  • flash_attn 2.8.4

  • flash_attn_3 3.0.0

  • flashinfer-python 0.6.4

  • imageio-ffmpeg 0.6.0

  • ray 2.54.0

  • transformers 4.57.6

  • triton 3.6.0

  • torchaudio 2.10.0+cu130

  • torchvision 0.25.0+cu130

  • vllm 0.17.1

  • xfuser 0.4.5

  • xgrammar 0.1.29

  • ljperf 0.1.0+d0e4a408

  • Ubuntu 24.04

  • Python 3.12

  • Torch 2.10.0+cu130

  • CUDA 13.0.2

  • NCCL 2.29.7

  • flash_attn 2.8.4

  • flashinfer-python 0.6.4

  • transformers 4.57.6

  • ray 2.54.0

  • vllm 0.17.1

  • triton 3.6.0

  • torchaudio 2.10.0+cu130

  • torchvision 0.25.0+cu130

  • xgrammar 0.1.29

  • ljperf 0.1.0+477686c5

アセット

パブリックイメージ

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 ファイルでイメージリファレンスを指定してください。詳細については、以下のトピックをご参照ください。

  1. コンテナイメージをプルします。

    docker pull egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:[tag]
  2. ModelScope からオープンソースモデルをダウンロードします。

    pip install modelscope
    cd /mnt
    modelscope download --model Qwen/Qwen2.5-7B-Instruct --local_dir ./Qwen2.5-7B-Instruct
  3. 次のコマンドを実行してコンテナを起動し、その内部に入ります。

    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]
  4. vLLM の会話型推論機能をテストします。

    1. サーバーを起動します。

      python3 -m vllm.entrypoints.openai.api_server \
      --model /mnt/Qwen2.5-7B-Instruct \
      --trust-remote-code --disable-custom-all-reduce \
      --tensor-parallel-size 1
    2. クライアント側でテストを実行します。

      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 プラグインをサポートしていません。