README.md 13.3 KB
Newer Older
1
# Contributing to vLLM
2
3
4
5
6
7
8
9
10
11
12
13

Thank you for your interest in contributing to vLLM! Our community is open to everyone and welcomes all kinds of contributions, no matter how small or large. There are several ways you can contribute to the project:

- Identify and report any issues or bugs.
- Request or add support for a new model.
- Suggest or implement new features.
- Improve documentation or contribute a how-to guide.

We also believe in the power of community support; thus, answering queries, offering PR reviews, and assisting others are also highly regarded and beneficial contributions.

Finally, one of the most impactful ways to support us is by raising awareness about vLLM. Talk about it in your blog posts and highlight how it's driving your incredible projects. Express your support on social media if you're using vLLM, or simply offer your appreciation by starring our repository!

14
15
16
17
18
## Job Board

Unsure on where to start? Check out the following links for tasks to work on:

- [Good first issues](https://github.com/vllm-project/vllm/issues?q=is%3Aissue%20state%3Aopen%20label%3A%22good%20first%20issue%22)
19
    - [Selected onboarding tasks](https://github.com/orgs/vllm-project/projects/6)
20
- [New model requests](https://github.com/vllm-project/vllm/issues?q=is%3Aissue%20state%3Aopen%20label%3A%22new-model%22)
21
    - [Models with multi-modal capabilities](https://github.com/orgs/vllm-project/projects/10)
22

23
## License
24

25
See [LICENSE](../../LICENSE).
26

27
## Developing
28

29
The first step of contributing to vLLM is to clone the GitHub repository:
30

31
32
33
34
```bash
git clone https://github.com/vllm-project/vllm.git
cd vllm
```
35

36
Then, configure your Python virtual environment.
37

38
--8<-- "docs/getting_started/installation/python_env_setup.inc.md"
Reid's avatar
Reid committed
39

40
If you are only developing vLLM's Python code, install vLLM using:
Reid's avatar
Reid committed
41

42
43
44
```bash
VLLM_USE_PRECOMPILED=1 uv pip install -e .
```
Reid's avatar
Reid committed
45

46
If you are developing vLLM's Python and CUDA/C++ code, install Pytorch first:
47
48

```bash
49
50
51
uv pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu129
```

52
53
54
55
56
57
58
Then install the necessary build dependencies from `requirements/build.txt`, skipping `torch` as it was installed in the previous step:

```bash
grep -v '^torch==' requirements/build.txt | uv pip install -r -
```

Finally install vLLM using:
59
60
61

```bash
uv pip install -e . --no-build-isolation
62
63
```

64
For more details about installing from source and installing for other hardware, check out the [installation instructions](../getting_started/installation/README.md) for your hardware and head to the "Build wheel from source" section.
Reid's avatar
Reid committed
65

66
For an optimized workflow when iterating on C++/CUDA kernels, see the [Incremental Compilation Workflow](./incremental_build.md) for recommendations.
Reid's avatar
Reid committed
67

68
!!! tip
69
    vLLM is compatible with Python versions 3.10 to 3.13. However, vLLM's default [Dockerfile](../../docker/Dockerfile) ships with Python 3.12 and tests in CI (except `mypy`) are run with Python 3.12.
Reid's avatar
Reid committed
70

71
    Therefore, we recommend developing with Python 3.12 to minimise the chance of your local environment clashing with our CI environment.
Reid's avatar
Reid committed
72

73
### Linting
Reid's avatar
Reid committed
74

75
vLLM uses `pre-commit` to lint and format the codebase. See <https://pre-commit.com/#usage> if `pre-commit` is new to you. Setting up `pre-commit` is as easy as:
Reid's avatar
Reid committed
76
77

```bash
78
79
uv pip install pre-commit
pre-commit install
Reid's avatar
Reid committed
80
81
```

82
vLLM's `pre-commit` hooks will now run automatically every time you commit.
Reid's avatar
Reid committed
83

84
85
!!! tip "Tips"
    You can manually run the `pre-commit` hooks using:
86

87
88
89
90
    ```bash
    pre-commit run     # runs on staged files
    pre-commit run -a  # runs on all files (short for --all-files)
    ```
91

92
    ---
Reid's avatar
Reid committed
93

94
    Some `pre-commit` hooks only run in CI. If you need to, you can run them locally with:
Reid's avatar
Reid committed
95

96
    ```bash
97
    pre-commit run --hook-stage manual mypy-3.10
98
    ```
Reid's avatar
Reid committed
99

100
### Documentation
Reid's avatar
Reid committed
101

102
MkDocs is a fast, simple and downright gorgeous static site generator that's geared towards building project documentation. Documentation source files are written in Markdown, and configured with a single YAML configuration file, [mkdocs.yaml](../../mkdocs.yaml).
Reid's avatar
Reid committed
103

104
Get started with:
Reid's avatar
Reid committed
105

106
107
108
```bash
uv pip install -r requirements/docs.txt
```
109

110
111
112
!!! tip
    Ensure that your Python version is compatible with the plugins
    (e.g., `mkdocs-awesome-nav` requires Python 3.10+)
113

114
115
MkDocs comes with a built-in dev-server that lets you preview your documentation as you work on it.
From the root of the repository, run:
116

117
118
119
120
```bash
mkdocs serve                           # with API ref (~10 minutes)
API_AUTONAV_EXCLUDE=vllm mkdocs serve  # API ref off (~15 seconds)
```
121

122
123
Once you see `Serving on http://127.0.0.1:8000/` in the logs, the live preview is ready!
Open <http://127.0.0.1:8000/> in your browser to see it.
124

125
For additional features and advanced configurations, refer to the:
Reid's avatar
Reid committed
126

127
128
- [MkDocs documentation](https://www.mkdocs.org/)
- [Material for MkDocs documentation](https://squidfunk.github.io/mkdocs-material/) (the MkDocs theme we use)
129

130
### Testing
131

132
vLLM uses `pytest` to test the codebase.
133

134
135
136
137
138
139
140
141
142
```bash
# Install the test dependencies used in CI (CUDA only)
uv pip install -r requirements/common.txt -r requirements/dev.txt --torch-backend=auto

# Install some common test dependencies (hardware agnostic)
uv pip install pytest pytest-asyncio

# Run all tests
pytest tests/
143

144
145
146
147
148
# Run tests for a single test file with detailed output
pytest -s -v tests/test_logger.py
```

!!! tip "Install python3-dev if Python.h is missing"
149
150
151
    If any of the above commands fails with `Python.h: No such file or directory`, install
    `python3-dev` with `sudo apt install python3-dev`.

152
!!! warning "Warnings"
153
    Currently, the repository is not fully checked by `mypy`.
154

155
156
    ---

157
158
159
    Currently, not all unit tests pass when run on CPU platforms. If you don't have access to a GPU
    platform to run unit tests locally, rely on the continuous integration system to run the tests for
    now.
160

161
## Issues
162

163
If you encounter a bug or have a feature request, please [search existing issues](https://github.com/vllm-project/vllm/issues?q=is%3Aissue) first to see if it has already been reported. If not, please [file a new issue](https://github.com/vllm-project/vllm/issues/new/choose), providing as much relevant information as possible.
164

165
!!! important
166
    If you discover a security vulnerability, please follow the instructions [here](../../SECURITY.md).
167

168
## Pull Requests & Code Reviews
169

170
171
172
173
Thank you for your contribution to vLLM! Before submitting the pull request,
please ensure the PR meets the following criteria. This helps vLLM maintain the
code quality and improve the efficiency of the review process.

174
### DCO and Signed-off-by
175

176
When contributing changes to this project, you must agree to the [DCO](../../DCO).
177
Commits must include a `Signed-off-by:` header which certifies agreement with
178
the terms of the DCO.
179

180
Using `-s` with `git commit` will automatically add this header.
181

182
!!! tip
183
    You can enable automatic sign-off via your IDE:
184

185
186
187
188
    - **PyCharm**: Click on the `Show Commit Options` icon to the right of the `Commit and Push...` button in the `Commit` window.
      It will bring up a `git` window where you can modify the `Author` and enable `Sign-off commit`.
    - **VSCode**: Open the [Settings editor](https://code.visualstudio.com/docs/configure/settings)
      and enable the `Git: Always Sign Off` (`git.alwaysSignOff`) field.
189

190
191
### AI Assisted Contributions

Harry Mellor's avatar
Harry Mellor committed
192
193
194
195
196
Before making an AI assisted contribution, you must:

1. **Be involved**: Do not submit "pure agent" PRs. The human submitter is responsible for reviewing all changed lines, validating behavior end-to-end, and running relevant tests.
2. **Ensure significance**: Avoid one-off "busywork" PRs (single typo, isolated style cleanup, one mutable default fix, etc.). Bundle mechanical cleanups into a clear, systematic scope.

197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
When AI tools provide non-trivial assistance in generating or modifying code, you must:

1. **Review thoroughly**: You remain responsible for all code you submit. Review and understand AI-generated code with the same care as code you write manually.
2. **Disclose in PR**: Always mention when a pull request includes AI-generated code. Add a note in the PR description.
3. **Mark commits**: Add attribution using commit trailers such as `Co-authored-by:` (other projects use `Assisted-by:` or `Generated-by:`). For example:

   ```text
   Your commit message here

   Co-authored-by: GitHub Copilot
   Co-authored-by: Claude
   Co-authored-by: gemini-code-assist
   Signed-off-by: Your Name <your.email@example.com>
   ```

AI-assisted code must meet all quality standards: proper testing, documentation, adherence to style guides, and thorough review. Attribution helps reviewers evaluate contributions in context and maintains legal clarity for the project.

214
### PR Title and Classification
215
216
217
218

Only specific types of PRs will be reviewed. The PR title is prefixed
appropriately to indicate the type of change. Please use one of the following:

219
220
221
222
- `[Bugfix]` for bug fixes.
- `[CI/Build]` for build or continuous integration improvements.
- `[Doc]` for documentation fixes and improvements.
- `[Model]` for adding a new model or improving an existing model. Model name
223
  should appear in the title.
224
225
226
227
228
229
230
231
- `[Frontend]` For changes on the vLLM frontend (e.g., OpenAI API server,
  `LLM` class, etc.)
- `[Kernel]` for changes affecting CUDA kernels or other compute kernels.
- `[Core]` for changes in the core vLLM logic (e.g., `LLMEngine`,
  `AsyncLLMEngine`, `Scheduler`, etc.)
- `[Hardware][Vendor]` for hardware-specific changes. Vendor name should
  appear in the prefix (e.g., `[Hardware][AMD]`).
- `[Misc]` for PRs that do not fit the above categories. Please use this
232
233
  sparingly.

234
235
!!! note
    If the PR spans more than one category, please include all relevant prefixes.
236

237
### Code Quality
238
239
240

The PR needs to meet the following code quality standards:

241
- We adhere to [Google Python style guide](https://google.github.io/styleguide/pyguide.html) and [Google C++ style guide](https://google.github.io/styleguide/cppguide.html).
242
- Pass all linter checks.
243
244
245
246
- The code needs to be well-documented to ensure future contributors can easily
  understand the code.
- Include sufficient tests to ensure the project stays correct and robust. This
  includes both unit tests and integration tests.
247
248
- Please add documentation to `docs/` if the PR modifies the user-facing behaviors of vLLM.
  It helps vLLM users understand and utilize the new features or changes.
249

250
### Adding or Changing Kernels
251

252
When actively developing or modifying kernels, using the [Incremental Compilation Workflow](./incremental_build.md) is highly recommended for faster build times.
253
254
255
Each custom kernel needs a schema and one or more implementations to be registered with PyTorch.

- Make sure custom ops are registered following PyTorch guidelines:
256
257
258
  [Custom C++ and CUDA Operators](https://pytorch.org/tutorials/advanced/cpp_custom_ops.html#cpp-custom-ops-tutorial)
  and [The Custom Operators Manual](https://docs.google.com/document/d/1_W62p8WJOQQUzPsJYa7s701JXt0qf2OfLub2sbkHOaU).
- Custom operations that return `Tensors` require meta-functions.
259
260
261
  Meta-functions should be implemented and registered in Python so that dynamic
  dims can be handled automatically. See above documents for a description of
  meta-functions.
262
- Use [torch.library.opcheck()](https://pytorch.org/docs/stable/library.html#torch.library.opcheck)
263
  to test the function registration and meta-function for any registered ops.
264
  See `tests/kernels` for examples.
265
266
267
- When changing the C++ signature of an existing op, the schema must be updated
  to reflect the changes.
- If a new custom type is needed, see the following document:
268
  [Custom Class Support in PT2](https://docs.google.com/document/d/18fBMPuOJ0fY5ZQ6YyrHUppw9FA332CpNtgB6SOIgyuA).
269

270
### Notes for Large Changes
271
272
273
274

Please keep the changes as concise as possible. For major architectural changes
(>500 LOC excluding kernel/data/config/test), we would expect a GitHub issue
(RFC) discussing the technical design and justification. Otherwise, we will tag
275
it with `rfc-required` and might not go through the PR.
276

277
### What to Expect for the Reviews
278
279
280
281
282
283
284
285
286
287
288
289

The goal of the vLLM team is to be a *transparent reviewing machine*. We would
like to make the review process transparent and efficient and make sure no
contributor feels confused or frustrated. However, the vLLM team is small, so we
need to prioritize some PRs over others. Here is what you can expect from the
review process:

- After the PR is submitted, the PR will be assigned to a reviewer. Every
  reviewer will pick up the PRs based on their expertise and availability.
- After the PR is assigned, the reviewer will provide status updates every 2-3
  days. If the PR is not reviewed within 7 days, please feel free to ping the
  reviewer or the vLLM team.
290
- After the review, the reviewer will put an `action-required` label on the PR
291
292
293
294
295
  if there are changes required. The contributor should address the comments and
  ping the reviewer to re-review the PR.
- Please respond to all comments within a reasonable time frame. If a comment
  isn't clear or you disagree with a suggestion, feel free to ask for
  clarification or discuss the suggestion.
296
297
298
- Note that not all CI checks will be executed due to limited computational
  resources. The reviewer will add `ready` label to the PR when the PR is
  ready to merge or a full CI run is needed.
299

300
## Thank You
301
302
303

Finally, thank you for taking the time to read these guidelines and for your interest in contributing to vLLM.
All of your contributions help make vLLM a great tool and community for everyone!