Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/contributing/incremental_build.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
6 changes: 3 additions & 3 deletions docs/contributing/model/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Comment on lines +17 to +19
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider using sentence case for the link texts for consistency with "Multi-Modal Support".

Suggested change
- [Basic Model](basic.md)
- [Registering a Model](registration.md)
- [Unit Testing](tests.md)
- [Basic model](basic.md)
- [Registering a model](registration.md)
- [Unit testing](tests.md)

- [Multi-Modal Support](multimodal.md)

!!! tip
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing/model/basic.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Implementing a Basic Model
title: Basic Model
---
[](){ #new-model-basic }

Expand Down
2 changes: 1 addition & 1 deletion docs/contributing/model/registration.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Registering a Model to vLLM
title: Registering a Model
---
[](){ #new-model-registration }

Expand Down
2 changes: 1 addition & 1 deletion docs/contributing/model/tests.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Writing Unit Tests
title: Unit Testing
---
[](){ #new-model-tests }

Expand Down