-
-
Notifications
You must be signed in to change notification settings - Fork 9.2k
multi-LoRA as extra models in OpenAI server #2775
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
Merged
Merged
Changes from 4 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
919827a
use lora request in OpenAIServiing; expose lora modules as parameter …
jvmncs a4881f9
add single completion test cases for lora adapters
jvmncs 613c77a
bugfix
jvmncs 19694ae
switch back to zephyr base
jvmncs 53c096e
add extra lora test case to all openai completion tests
jvmncs b8ffada
[Minor] Fix benchmark_latency script (#2765)
WoosukKwon 3faac81
[ROCm] Fix some kernels failed unit tests (#2498)
hongxiayang e6f0009
Set local logging level via env variable (#2774)
gardberg 419b31d
[ROCm] Fixup arch checks for ROCM (#2627)
dllehr-amd 36017aa
Add fused top-K softmax kernel for MoE (#2769)
WoosukKwon 78dee0a
modelscope: fix issue when model parameter is not a model id but path…
liuyhwangyh 585846d
[Minor] More fix of test_cache.py CI test failure (#2750)
LiuXiaoxuanPKU 5cb2c3a
[ROCm] Fix build problem resulted from previous commit related to FP8…
hongxiayang e1152b1
Add documentation on how to do incremental builds (#2796)
pcmoritz 593578c
[Ray] Integration compiled DAG off by default (#2471)
rkooo567 5c40715
Disable custom all reduce by default (#2808)
WoosukKwon 5d228c1
[ROCm] support Radeon™ 7900 series (gfx1100) without using flash-atte…
hongxiayang 2090924
Add documentation section about LoRA (#2834)
pcmoritz b440270
Refactor 2 awq gemm kernels into m16nXk32 (#2723)
zcnrex 57b02d0
Serving Benchmark Refactoring (#2433)
ywang96 1f6c168
[CI] Ensure documentation build is checked in CI (#2842)
simon-mo 9a2cbe1
Refactor llama family models (#2637)
esmeetu 822b463
Revert "Refactor llama family models (#2637)" (#2851)
pcmoritz 299b8cc
Use CuPy for CUDA graphs (#2811)
WoosukKwon 44b28d2
Remove Yi model definition, please use `LlamaForCausalLM` instead (#2…
pcmoritz 0525d72
Add LoRA support for Mixtral (#2831)
tterrysun 70aa7d4
Migrate InternLMForCausalLM to LlamaForCausalLM (#2860)
pcmoritz 8c3d97a
Fix internlm after https://github.com/vllm-project/vllm/pull/2860 (#2…
pcmoritz 5d34102
[Fix] Fix memory profiling when GPU is used by multiple processes (#2…
WoosukKwon 35952e4
append lora serving instructions to lora documentation
jvmncs a6deb54
Merge branch 'main' into openai-lora
jvmncs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
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.
for some reason this test was failing for all cases when I switched to
MODEL_NAME="mistralai/Mistral-7B-v0.1"
. model was consistently emitting "1999" no matter the prompt/temperature I tried. not really sure why that's the case but reverting to the zephyr model fixed it