Tous les produits
Search
Centre de documentation

Container Compute Service:inference-nv-pytorch 26.05

Dernière mise à jour :Aug 12, 2026

Cette rubrique présente les notes de version d'inference-nv-pytorch 26.05.

Fonctionnalités principales et corrections de bugs

Fonctionnalités principales

  • À partir de la version 26.05, CUDA 12.8 n'est plus pris en charge. Seules les images pour CUDA 13.0 sont disponibles.

    • L'image CUDA 13.0 prend en charge les architectures amd64 et aarch64.

  • Dans l'image vLLM, Torch passe à la version 2.11.0 et vLLM à la version v0.20.2.

  • Dans l'image SGLang, Torch passe à la version 2.11.0 et SGLang à la version v0.5.11.

Corrections de bugs

Aucune.

Contenu

Nom de l'image

inference-nv-pytorch

Tag

26.05-vllm0.20.2-pytorch2.11-cu130-20260513-serverless

26.05-sglang0.5.11-pytorch2.11-cu130-20260513-serverless

Architecture prise en charge

amd64

aarch64

amd64

aarch64

Cas d'utilisation

Inférence de grands modèles

Inférence de grands modèles

Inférence de grands modèles

Inférence de grands modèles

Framework

pytorch

pytorch

pytorch

pytorch

Prérequis

Pilote NVIDIA version 580 ou ultérieure

Pilote NVIDIA version 580 ou ultérieure

Pilote NVIDIA version 580 ou ultérieure

Pilote NVIDIA version 580 ou ultérieure

Composants système

  • Ubuntu 24.04

  • Python 3.12

  • Torch 2.11.0

  • CUDA 13.0.2

  • NCCL 2.29.7

  • diffusers 0.38.0

  • flash_attn 2.8.3

  • flash_attn_3 3.0.0

  • flashinfer-python 0.6.8

  • imageio-ffmpeg 0.6.0

  • ray 2.55.1

  • transformers 5.8.1

  • triton 3.6.0

  • torchvision 0.26.0

  • vllm 0.20.2

  • xfuser 0.4.5

  • xgrammar 0.2.0

  • ljperf 0.1.0+d0e4a408

  • Ubuntu 24.04

  • Python 3.12

  • Torch 2.11.0

  • CUDA 13.0.2

  • NCCL 2.29.7

  • flash_attn 2.8.4

  • flashinfer-python 0.6.8

  • transformers 4.57.6

  • vllm 0.20.2

  • triton 3.6.0

  • torchvision 0.26.0

  • xgrammar 0.1.33

  • ljperf 0.1.0+477686c5

  • ray 2.55.1

  • Ubuntu 24.04

  • Python 3.12

  • Torch 2.11.0

  • CUDA 13.0.2

  • NCCL 2.29.7

  • diffusers 0.38.0

  • decord 0.6.0

  • flash_attn 2.8.3

  • flash_attn_3 3.0.0

  • flashinfer-python 0.6.8

  • imageio-ffmpeg 0.6.0

  • ray 2.55.1

  • transformers 5.6.0

  • sgl-kernel 0.4.2

  • sglang 0.5.11

  • xgrammar 0.1.32

  • triton 3.6.0

  • torchao 0.17.0

  • torchaudio 2.11.0

  • torchvision 0.26.0

  • xfuser 0.4.5

  • ljperf 0.1.0+d0e4a408

  • Ubuntu 24.04

  • Python 3.12

  • Torch 2.11.0

  • CUDA 13.0.2

  • NCCL 2.29.7

  • diffusers 0.38.0

  • decord2 3.3.0

  • flash_attn 2.8.4

  • flashinfer-python 0.6.8

  • imageio-ffmpeg 0.6.0

  • ray 2.55.1

  • transformers 5.6.0

  • sgl-kernel 0.4.2

  • sglang 0.5.11

  • xgrammar 0.1.32

  • triton 3.6.0

  • torchao 0.17.0

  • torchaudio 2.11.0

  • torchvision 0.26.0

  • xfuser 0.4.5

  • ljperf 0.1.0+477686c5

Ressource

Image publique

Ressource CUDA 13.0

  • egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.05-vllm0.20.2-pytorch2.11-cu130-20260513-serverless

  • egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.05-sglang0.5.11-pytorch2.11-cu130-20260513-serverless

Image VPC

Remarque

Ces images sont destinées aux environnements multi-locataires ACS et EGS. Ne les utilisez pas dans des environnements EGS dédiés.

Prérequis relatifs aux pilotes

  • CUDA 13.0 : pilote NVIDIA version 580 ou ultérieure requis

Démarrage rapide

Cet exemple explique comment récupérer l'image inference-nv-pytorch avec Docker et tester le service d'inférence à l'aide du modèle Qwen2.5-7B-Instruct.

Remarque

Pour utiliser l'image inference-nv-pytorch dans ACS, sélectionnez-la depuis l'Artifacts Center sur la page Create Workload de la console. Vous pouvez également spécifier la référence de l'image dans un fichier YAML. Pour plus d'informations, consultez les rubriques suivantes sur la création de services d'inférence de modèles avec des ressources GPU ACS :

  1. Récupérez l'image du conteneur d'inférence.

    docker pull egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:[tag]
  2. Téléchargez le modèle open source depuis ModelScope.

    pip install modelscope
    cd /mnt
    modelscope download --model Qwen/Qwen2.5-7B-Instruct --local_dir ./Qwen2.5-7B-Instruct
  3. Exécutez la commande suivante pour accéder au conteneur.

    docker run -d -t --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. Testez la fonctionnalité conversationnelle de vLLM.

    1. Démarrez le service serveur.

      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. Effectuez un test côté client.

      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": "Introduce deep learning."}
          ]}'

      Pour plus d'informations sur l'utilisation de vLLM, consultez vLLM.

Problèmes connus

  • Cette image ne prend pas en charge le plugin deepgpu-comfyui.