Move and update MindSpore docs, make it appear on the online documentation (#14861)

Co-authored-by: wangtiance <tiancew@qq.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This commit is contained in:
Tiance Wang
2025-12-10 23:03:50 -08:00
committed by GitHub
co-authored by wangtiance gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
parent 1a96e66493
commit 624725cb5e
2 changed files with 4 additions and 16 deletions
+1
View File
@@ -67,6 +67,7 @@ Its core features include:
supported_models/support_new_models.md
supported_models/transformers_fallback.md
supported_models/modelscope.md
supported_models/mindspore_models.md
.. toctree::
:maxdepth: 1
@@ -19,27 +19,14 @@ Currently, the following models are supported:
## Installation
> **Note**: Currently, MindSpore models are provided by an independent package `sgl-mindspore`, which needs to be installed separately.
> **Note**: Currently, MindSpore models are provided by an independent package `sgl-mindspore`. Support for MindSpore is built upon current SGLang support for Ascend NPU platform. Please first [install SGLang for Ascend NPU](../platforms/ascend_npu.md) and then install `sgl-mindspore`:
```shell
git clone https://github.com/chz34/sgl-mindspore.git
git clone https://github.com/mindspore-lab/sgl-mindspore.git
cd sgl-mindspore
pip install -e .
```
You will need to install the following packages.
```shell
pip install "mindspore==2.7.1"
pip install "torch==2.8"
pip install "torch_npu==2.8"
pip install triton_ascend
```
```shell
cp python/pyproject_other.toml python/pyproject.toml
pip install -e "python[all_npu]"
```
## Run Model
@@ -69,7 +56,7 @@ prompts = [
"The future of AI is"
]
sampling_params = {"temperature": 0.01, "top_p": 0.9}
sampling_params = {"temperature": 0, "top_p": 0.9}
outputs = llm.generate(prompts, sampling_params)
for prompt, output in zip(prompts, outputs):