Quick Start

View Source On Gitee

This document provides a quick guide to deploy vLLM-MindSpore Plugin by docker, with the Qwen2.5-7B model as an example. User can quickly experience the serving and inference abilities of vLLM-MindSpore Plugin by offline inference and online inference. For more information about installation, please refer to the Installation Guide.

Docker Installation

In this section, we recommend to use docker to deploy the vLLM-MindSpore Plugin environment. The following sections are the steps for deployment:

Building the Image

User can execute the following commands to clone the vLLM-MindSpore Plugin code repository and build the image:

git clone https://gitee.com/mindspore/vllm-mindspore.git
bash build_image.sh

After a successful build, user will get the following output:

Successfully built e40bcbeae9fc
Successfully tagged vllm_ms_20250726:latest

Here, e40bcbeae9fc is the image ID, and vllm_ms_20250726:latest is the image name and tag. User can run the following command to confirm that the Docker image has been successfully created:

docker images  

Creating a Container

After building the image, set DOCKER_NAME and IMAGE_NAME as the container and image names, and create the container by running:

export DOCKER_NAME=vllm-mindspore-container  # your container name
export IMAGE_NAME=vllm_ms_20250726:latest  # your image name

docker run -itd --name=${DOCKER_NAME} --ipc=host --network=host --privileged=true \
        --device=/dev/davinci0 \
        --device=/dev/davinci1 \
        --device=/dev/davinci2 \
        --device=/dev/davinci3 \
        --device=/dev/davinci4 \
        --device=/dev/davinci5 \
        --device=/dev/davinci6 \
        --device=/dev/davinci7 \
        --device=/dev/davinci_manager \
        --device=/dev/devmm_svm \
        --device=/dev/hisi_hdc \
        -v /usr/local/sbin/:/usr/local/sbin/ \
        -v /var/log/npu/slog/:/var/log/npu/slog \
        -v /var/log/npu/profiling/:/var/log/npu/profiling \
        -v /var/log/npu/dump/:/var/log/npu/dump \
        -v /var/log/npu/:/usr/slog \
        -v /etc/hccn.conf:/etc/hccn.conf \
        -v /usr/local/bin/npu-smi:/usr/local/bin/npu-smi \
        -v /usr/local/dcmi:/usr/local/dcmi \
        -v /usr/local/Ascend/driver:/usr/local/Ascend/driver \
        -v /etc/ascend_install.info:/etc/ascend_install.info \
        -v /etc/vnpu.cfg:/etc/vnpu.cfg \
        --shm-size="250g" \
        ${IMAGE_NAME} \
        bash

After successfully creating the container, the container ID will be returned. User can verify the creation by executing the following command:

docker ps  

Entering the Container

After creating the container, use the environment variable DOCKER_NAME to start and enter the container by executing the following command:

docker exec -it $DOCKER_NAME bash  

Using the Service

After deploying the environment, user need to prepare the model files before running the model. Refer to the Download Model section for guidance. After setting environment variables, user can experience the model bt offline inference or online inference.

Downloading Model

User can download the model using either the Python Tool or git-lfs Tool.

Downloading with Python Tool

Execute the following Python script to download the Qwen2.5-7B weights and files from Hugging Face:

from huggingface_hub import snapshot_download

snapshot_download(
    repo_id="Qwen/Qwen2.5-7B-Instruct",
    local_dir="/path/to/save/Qwen2.5-7B-Instruct",
    local_dir_use_symlinks=False
)

local_dir is the model save path specified by the user. Please ensure the disk space is sufficient.

Downloading with git-lfs Tool

Execute the following command to check if git-lfs is available:

git lfs install  

If available, the following output will be displayed:

Git LFS initialized.  

If the tool is unavailable, please install git-lfs first. Refer to the FAQ section for guidance on git-lfs installation.

Once confirmed, download the weights by executing the following command:

git clone https://huggingface.co/Qwen/Qwen2.5-7B-Instruct  

Setting Environment Variables

Before launching the model, user need to set the following environment variables:

export vLLM_MODEL_BACKEND=MindFormers # use MindSpore Transformers as model backend.  
export MINDFORMERS_MODEL_CONFIG=$YAML_PATH # Set the corresponding MindSpore Transformers model's YAML file.  

Here is an explanation of these environment variables:

Additionally, users need to ensure that MindSpore Transformers is installed. Users can add it by running the following command:

export PYTHONPATH=/path/to/mindformers:$PYTHONPATH  

This will include MindSpore Transformers in the Python path.

Offline Inference

Taking Qwen2.5-7B as an example, user can perform offline inference with the following Python script:

import vllm_mindspore # Add this line on the top of script.
from vllm import LLM, SamplingParams

# Sample prompts.
prompts = [
    "I am",
    "Today is",
    "Llama is"
]

# Create a sampling params object.
sampling_params = SamplingParams(temperature=0.0, top_p=0.95)

# Create a LLM
llm = LLM(model="Qwen2.5-7B-Instruct")
# Generate texts from the prompts. The output is a list of RequestOutput objects
# that contain the prompt, generated text, and other information.
outputs = llm.generate(prompts, sampling_params)
# Print the outputs.
for output in outputs:
    prompt = output.prompt
    generated_text = output.outputs[0].text
    print(f"Prompt: {prompt!r}. Generated text: {generated_text!r}")

If offline inference runs successfully, similar results will be obtained:

Prompt: 'I am'. Generated text: ' trying to create a virtual environment for my Python project, but I am encountering some'
Prompt: 'Today is'. Generated text: ' the 100th day of school. To celebrate, the teacher has'
Prompt: 'Llama is'. Generated text: ' a 100% natural, biodegradable, and compostable alternative'

Online Inference

vLLM-MindSpore Plugin supports online inference deployment with the OpenAI API protocol. The following section would introduce how to starting the service and send requests to obtain inference results, using Qwen2.5-7B as an example.

Starting the Service

Use the model Qwen/Qwen2.5-7B-Instruct and start the vLLM service with the following command:

python3 -m vllm_mindspore.entrypoints vllm.entrypoints.openai.api_server --model "Qwen/Qwen2.5-7B-Instruct"

User can also set the local model path by --model argument. If the service starts successfully, similar output will be obtained:

INFO:   Started server process [6363]  
INFO:   Waiting for application startup.  
INFO:   Application startup complete.  

Additionally, performance metrics will be logged, such as:

Engine 000: Avg prompt throughput: 0.0 tokens/s, Avg gereration throughput: 0.0 tokens/s, Running: 0 reqs, Waiting: 0 reqs, GPU KV cache usage: 0.0%, Prefix cache hit rate: 0.0%

Sending Requests

Use the following command to send a request, where prompt is the model input:

curl http://localhost:8000/v1/completions -H "Content-Type: application/json" -d '{"model": "Qwen/Qwen2.5-7B-Instruct", "prompt": "I am", "max_tokens": 15, "temperature": 0}'  

User needs to ensure that the "model" field matches the --model in the service startup, and the request can successfully match the model.

If the request is processed successfully, the following inference result will be returned:

{  
    "id":"cmpl-5e6e314861c24ba79fea151d86c1b9a6","object":"text_completion",  
    "create":1747398389,  
    "model":"Qwen2.5-7B-Instruct",  
    "choices":[  
        {  
            "index":0,  
            "text":"trying to create a virtual environment for my Python project, but I am encountering some",  
            "logprobs":null,  
            "finish_reason":"length",  
            "stop_reason":null,  
            "prompt_logprobs":null  
        }  
    ],  
    "usage":{  
        "prompt_tokens":2,  
        "total_tokens":17,  
        "completion_tokens":15,  
        "prompt_tokens_details":null  
    }  
}