Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
0f71e240
Unverified
Commit
0f71e240
authored
May 31, 2025
by
Lukas Geiger
Committed by
GitHub
May 31, 2025
Browse files
[Docs] Correct multiprocessing design doc (#18964)
Signed-off-by:
Lukas Geiger
<
lukas.geiger94@gmail.com
>
parent
1dab4d57
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
docs/design/multiprocessing.md
docs/design/multiprocessing.md
+4
-4
No files found.
docs/design/multiprocessing.md
View file @
0f71e240
...
@@ -22,13 +22,13 @@ This document describes how vLLM deals with these challenges.
...
@@ -22,13 +22,13 @@ This document describes how vLLM deals with these challenges.
[
Python multiprocessing methods
](
https://docs.python.org/3/library/multiprocessing.html#contexts-and-start-methods
)
include:
[
Python multiprocessing methods
](
https://docs.python.org/3/library/multiprocessing.html#contexts-and-start-methods
)
include:
-
`spawn`
- spawn a new Python process. This will be the default as of Python
-
`spawn`
- spawn a new Python process. The default on Windows and macOS.
3.
14. In macOS, this is already the default.
-
`fork`
- Use
`os.fork()`
to fork the Python interpreter. Th
is is th
e default
-
`fork`
- Use
`os.fork()`
to fork the Python interpreter. The default
on
in Python versions prior to 3.14.
L
in
ux for
Python versions prior to 3.14.
-
`forkserver`
- Spawn a server process that will fork a new process on request.
-
`forkserver`
- Spawn a server process that will fork a new process on request.
The default on Linux for Python version 3.14 and newer.
### Tradeoffs
### Tradeoffs
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment