Skip to content

Commit

Permalink
[doc] improve installation doc (vllm-project#8550)
Browse files Browse the repository at this point in the history
Co-authored-by: Andy Dai <76841985+Imss27@users.noreply.github.com>
  • Loading branch information
youkaichao and Imss27 authored Sep 17, 2024
1 parent 4d2a016 commit c770bdf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/source/getting_started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ You can also build and install vLLM from source:
$ export MAX_JOBS=6
$ pip install -e .
This is especially useful when you are building on less powerful machines. For example, when you use WSL, it only `gives you half of the memory by default <https://learn.microsoft.com/en-us/windows/wsl/wsl-config>`_, and you'd better use ``export MAX_JOBS=1`` to avoid compiling multiple files simultaneously and running out of memory. The side effect is that the build process will be much slower. If you only touch the Python code, slow compilation is okay, as you are building in an editable mode: you can just change the code and run the Python script without any re-compilation or re-installation.

.. tip::
If you have trouble building vLLM, we recommend using the NVIDIA PyTorch Docker image.

Expand Down
5 changes: 4 additions & 1 deletion tests/compile/test_full_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ def test_full_graph(model, tp_size):
"The future of AI is",
]
sampling_params = SamplingParams(temperature=0)
llm = LLM(model=model, enforce_eager=True, tensor_parallel_size=tp_size)
llm = LLM(model=model,
enforce_eager=True,
tensor_parallel_size=tp_size,
disable_custom_all_reduce=True)

outputs = llm.generate(prompts, sampling_params)

Expand Down

0 comments on commit c770bdf

Please sign in to comment.