You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,8 @@ Run the following command to start the vLLM server with the [Qwen/Qwen2.5-0.5B-I
68
68
vllm serve Qwen/Qwen2.5-0.5B-Instruct
69
69
curl http://localhost:8000/v1/models
70
70
```
71
-
**Please refer to [official docs](https://vllm-ascend.readthedocs.io/en/latest/) for more details.**
71
+
72
+
Please refer to [QuickStart](https://vllm-ascend.readthedocs.io/en/latest/quick_start.html) and [Installation](https://vllm-ascend.readthedocs.io/en/latest/installation.html) for more details.
72
73
73
74
## Contributing
74
75
See [CONTRIBUTING](docs/source/developer_guide/contributing.md) for more details, which is a step-by-step guide to help you set up development environment, build and test.
Copy file name to clipboardExpand all lines: docs/source/installation.md
+66-77Lines changed: 66 additions & 77 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,43 +17,30 @@ This document describes how to install vllm-ascend manually.
17
17
18
18
## Configure a new environment
19
19
20
-
Before installing the package, you need to make sure firmware/driver and CANN is installed correctly.
20
+
Before installing, you need to make sure firmware/driver and CANN is installed correctly.
21
21
22
22
### Install firmwares and drivers
23
23
24
-
To verify that the Ascend NPU firmware and driver were correctly installed, run `npu-smi info`.
25
-
26
-
> Tips: Refer to [Ascend Environment Setup Guide](https://ascend.github.io/docs/sources/ascend/quick_install.html) for more details.
27
-
28
-
### Install CANN (optional)
29
-
30
-
The installation of CANN wouldn’t be necessary if you are using a CANN container image, you can skip this step.If you want to install vllm-ascend on a bare environment by hand, you need install CANN first.
24
+
To verify that the Ascend NPU firmware and driver were correctly installed, run:
sh Ascend-cann-kernels-910b_8.0.0_linux-aarch64.run --full
27
+
npu-smi info
45
28
```
46
29
47
-
Once it's done, you can read either **Set up using Python** or **Set up using Docker** section to install and use vllm-ascend.
30
+
Refer to [Ascend Environment Setup Guide](https://ascend.github.io/docs/sources/ascend/quick_install.html) for more details.
31
+
32
+
### Install CANN
48
33
49
-
## Set up using Python
34
+
:::::{tab-set}
35
+
:sync-group: install
50
36
51
-
> Notes: If you are installing vllm-ascend on an arch64 machine, The `-f https://download.pytorch.org/whl/torch/` command parameter in this section can be omitted. It's only used for find torch package on x86 machine.
37
+
::::{tab-item} Using pip
38
+
:selected:
39
+
:sync: pip
52
40
53
-
Please make sure that CANN is installed. It can be done by **Configure a new environment** step. Or by using an CANN container directly:
41
+
The easiest way to prepare your CANN environment is using container directly:
54
42
55
43
```bash
56
-
# Setup a CANN container using docker
57
44
# Update DEVICE according to your device (/dev/davinci[0-7])
0 commit comments