Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add instructions for running vLLM backend #8
Add instructions for running vLLM backend #8
Changes from 15 commits
1688a33
0ba6200
a4921c1
92124bf
aa8a105
ed108d0
c5213f6
2c6881c
ac33407
d2fdb3f
02c1167
d164dab
5ed4d0e
0cd3d91
45a531f
1e27105
97417c5
d943de2
99943cc
b08f426
682ad0c
e7578f1
502f4db
ea35a73
fe06416
0144d33
0f0f968
b81574d
faa29a6
4259a7e
76c2d89
31f1733
76d0652
a50ae8d
edaff54
33dbaed
6575197
9effb18
8dc3f51
bf0d905
7ec9b5f
3b64abc
3a3b326
48e08e7
9b4a193
45be0f6
204ce5a
8c9c4e7
3ab4774
757e2b2
aa9ec65
e0161f4
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would installing dependencies be part of build? Or do we need a seperate section on dependencies?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch. I'll add this. I had made the assumption that this is using the vLLM backend, but we need to clarify/offer an independent build (e.g. adding these to a general Triton container).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are a couple of options, how you can build vLLM backend.
Option 1. You can follow steps described in Building With Docker and use
build.py
script.The sample command will build a Triton Server container with all available options enabled:
Option 2. You can install vLLM backend directly into our NGC Triton container. In this case, please install vllm first:
pip install vllm
, then set up vllm_backend in the container as follows:Note: we should also mention separate container at some point
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for drafting these instructions. Added!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
by default this is in the pre-built container?
Maybe this is best described as the vLLM version installed in the system (or container).