Skip to content

Commit 34878a0

Browse files
[Doc] Rename page titles (#20130)
Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
1 parent 6393b03 commit 34878a0

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

docs/contributing/incremental_build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Incremental Compilation Workflow for vLLM Development
1+
# Incremental Compilation Workflow
22

33
When working on vLLM's C++/CUDA kernels located in the `csrc/` directory, recompiling the entire project with `uv pip install -e .` for every change can be time-consuming. An incremental compilation workflow using CMake allows for faster iteration by only recompiling the necessary components after an initial setup. This guide details how to set up and use such a workflow, which complements your editable Python installation.
44

docs/contributing/model/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ However, this can be more complex for models that include new operators (e.g., a
1414

1515
Read through these pages for a step-by-step guide:
1616

17-
- [Implementing a Basic Model](basic.md)
18-
- [Registering a Model to vLLM](registration.md)
19-
- [Writing Unit Tests](tests.md)
17+
- [Basic Model](basic.md)
18+
- [Registering a Model](registration.md)
19+
- [Unit Testing](tests.md)
2020
- [Multi-Modal Support](multimodal.md)
2121

2222
!!! tip

docs/contributing/model/basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Implementing a Basic Model
2+
title: Basic Model
33
---
44
[](){ #new-model-basic }
55

docs/contributing/model/registration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Registering a Model to vLLM
2+
title: Registering a Model
33
---
44
[](){ #new-model-registration }
55

docs/contributing/model/tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Writing Unit Tests
2+
title: Unit Testing
33
---
44
[](){ #new-model-tests }
55

0 commit comments

Comments
 (0)