diff --git a/docs/contributing/incremental_build.md b/docs/contributing/incremental_build.md index 8efa34825eca..14c3aaead51e 100644 --- a/docs/contributing/incremental_build.md +++ b/docs/contributing/incremental_build.md @@ -1,4 +1,4 @@ -# Incremental Compilation Workflow for vLLM Development +# Incremental Compilation Workflow 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. diff --git a/docs/contributing/model/README.md b/docs/contributing/model/README.md index 82541924bc02..63abb7991050 100644 --- a/docs/contributing/model/README.md +++ b/docs/contributing/model/README.md @@ -14,9 +14,9 @@ However, this can be more complex for models that include new operators (e.g., a Read through these pages for a step-by-step guide: -- [Implementing a Basic Model](basic.md) -- [Registering a Model to vLLM](registration.md) -- [Writing Unit Tests](tests.md) +- [Basic Model](basic.md) +- [Registering a Model](registration.md) +- [Unit Testing](tests.md) - [Multi-Modal Support](multimodal.md) !!! tip diff --git a/docs/contributing/model/basic.md b/docs/contributing/model/basic.md index 644d21482ef6..d552cd06be20 100644 --- a/docs/contributing/model/basic.md +++ b/docs/contributing/model/basic.md @@ -1,5 +1,5 @@ --- -title: Implementing a Basic Model +title: Basic Model --- [](){ #new-model-basic } diff --git a/docs/contributing/model/registration.md b/docs/contributing/model/registration.md index a6dc1e32dfb9..758caa72cd4a 100644 --- a/docs/contributing/model/registration.md +++ b/docs/contributing/model/registration.md @@ -1,5 +1,5 @@ --- -title: Registering a Model to vLLM +title: Registering a Model --- [](){ #new-model-registration } diff --git a/docs/contributing/model/tests.md b/docs/contributing/model/tests.md index a8cb457453b9..c7bcc02a8b80 100644 --- a/docs/contributing/model/tests.md +++ b/docs/contributing/model/tests.md @@ -1,5 +1,5 @@ --- -title: Writing Unit Tests +title: Unit Testing --- [](){ #new-model-tests }