Skip to content

Commit 00459ae

Browse files
authored
[Doc] Add 0.7.3rc2 release note (#419) (#427)
Add release note for 0.7.3rc2 Signed-off-by: wangxiyuan <wangxiyuan1007@gmail.com>
1 parent 936ef96 commit 00459ae

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

docs/source/developer_guide/versioning_policy.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,18 @@ Following is the Release Compatibility Matrix for vLLM Ascend Plugin:
6767

6868
| vllm-ascend | vLLM | Python | Stable CANN | PyTorch/torch_npu |
6969
|--------------|--------------| --- | --- | --- |
70-
| v0.7.3rc1 | v0.7.3 | 3.9 - 3.12 | 8.0.0 | 2.5.1 / 2.5.1.dev20250320 |
70+
| v0.7.3rc2 | v0.7.3 | 3.9 - 3.12 | 8.0.0 | 2.5.1 / 2.5.1.dev20250320 |
71+
| v0.7.3rc1 | v0.7.3 | 3.9 - 3.12 | 8.0.0 | 2.5.1 / 2.5.1.dev20250308 |
7172
| v0.7.1rc1 | v0.7.1 | 3.9 - 3.12 | 8.0.0 | 2.5.1 / 2.5.1.dev20250218 |
7273

7374
## Release cadence
7475

75-
### Next final release (`v0.7.3`) window
76+
### release window
7677

7778
| Date | Event |
7879
|------------|-------------------------------------------|
80+
| 2025.04.15 | Release candidates, v0.8.Xrc1 |
81+
| 2025.04.15 | Final release, v0.7.3 |
82+
| 2025.03.28 | Release candidates, v0.7.3rc2 |
7983
| 2025.03.14 | Release candidates, v0.7.3rc1 |
80-
| 2025.03.20 | Release candidates if needed, v0.7.3rc2 |
81-
| 2025.03.30 | Final release, v0.7.3 |
84+
| 2025.02.19 | Release candidates, v0.7.1rc1 |

docs/source/faqs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- [[v0.7.1rc1] FAQ & Feedback](https://github.com/vllm-project/vllm-ascend/issues/19)
66
- [[v0.7.3rc1] FAQ & Feedback](https://github.com/vllm-project/vllm-ascend/issues/267)
7+
- [[v0.7.3rc2] FAQ & Feedback](https://github.com/vllm-project/vllm-ascend/issues/418)
78

89
## General FAQs
910

docs/source/user_guide/release_notes.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Release note
22

3+
## v0.7.3rc2
4+
5+
This is 2nd release candidate of v0.7.3 for vllm-ascend. Please follow the [official doc](https://vllm-ascend.readthedocs.io/en/v0.7.3-dev) to start the journey.
6+
- Quickstart with container: https://vllm-ascend.readthedocs.io/en/v0.7.3-dev/quick_start.html
7+
- Installation: https://vllm-ascend.readthedocs.io/en/v0.7.3-dev/installation.html
8+
9+
### Highlights
10+
- Add Ascend Custom Ops framewrok. Developers now can write customs ops using AscendC. An example ops `rotary_embedding` is added. More tutorials will come soon. The Custome Ops complation is disabled by default when installing vllm-ascend. Set `COMPILE_CUSTOM_KERNELS=1` to enable it. [#371](https://github.com/vllm-project/vllm-ascend/pull/371)
11+
- V1 engine is basic supported in this release. The full support will be done in 0.8.X release. If you hit any issue or have any requirement of V1 engine. Please tell us [here](https://github.com/vllm-project/vllm-ascend/issues/414). [#376](https://github.com/vllm-project/vllm-ascend/pull/376)
12+
- Prefix cache feature works now. You can set `enable_prefix_caching=True` to enable it. [#282](https://github.com/vllm-project/vllm-ascend/pull/282)
13+
14+
### Core
15+
- Bump torch_npu version to dev20250320.3 to improve accuracy to fix `!!!` output problem. [#406](https://github.com/vllm-project/vllm-ascend/pull/406)
16+
17+
### Model
18+
- The performance of Qwen2-vl is improved by optimizing patch embedding (Conv3D). [#398](https://github.com/vllm-project/vllm-ascend/pull/398)
19+
20+
### Other
21+
22+
- Fixed a bug to make sure multi step scheduler feature work. [#349](https://github.com/vllm-project/vllm-ascend/pull/349)
23+
- Fixed a bug to make prefix cache feature works with correct accuracy. [#424](https://github.com/vllm-project/vllm-ascend/pull/424)
24+
325
## v0.7.3rc1
426

527
🎉 Hello, World! This is the first release candidate of v0.7.3 for vllm-ascend. Please follow the [official doc](https://vllm-ascend.readthedocs.io/en/v0.7.3-dev) to start the journey.

docs/source/user_guide/suppoted_features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
| Feature | Supported | CI Coverage | Guidance Document | Current Status | Next Step |
44
|--------------------------|-----------|-------------|-------------------|---------------------------|--------------------|
5-
| Chunked Prefill || | | NA | Plan in 2025.03.30 |
6-
| Automatic Prefix Caching | | | | NA | Plan in 2025.03.30 |
5+
| Chunked Prefill || | | NA | Rely on CANN 8.1 NNAL package release |
6+
| Automatic Prefix Caching | | | | Basic functions available | Need fully test |
77
| LoRA || | | NA | Plan in 2025.06.30 |
88
| Prompt adapter || | | NA | Plan in 2025.06.30 |
99
| Speculative decoding || | | Basic functions available | Need fully test |

0 commit comments

Comments
 (0)