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
66b809cc
Commit
66b809cc
authored
Feb 08, 2025
by
zhuwenwen
Browse files
Merge tag 'v0.7.2' into v0.7.2-dev
parents
37b63c24
0408efc6
Changes
1000
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
40 additions
and
0 deletions
+40
-0
tests/kv_transfer/module_test.py
tests/kv_transfer/module_test.py
+2
-0
tests/kv_transfer/test_lookup_buffer.py
tests/kv_transfer/test_lookup_buffer.py
+2
-0
tests/kv_transfer/test_send_recv.py
tests/kv_transfer/test_send_recv.py
+2
-0
tests/lora/conftest.py
tests/lora/conftest.py
+2
-0
tests/lora/data/long_context_test_data.py
tests/lora/data/long_context_test_data.py
+2
-0
tests/lora/test_baichuan.py
tests/lora/test_baichuan.py
+2
-0
tests/lora/test_chatglm3_tp.py
tests/lora/test_chatglm3_tp.py
+2
-0
tests/lora/test_gemma.py
tests/lora/test_gemma.py
+2
-0
tests/lora/test_jamba.py
tests/lora/test_jamba.py
+2
-0
tests/lora/test_layers.py
tests/lora/test_layers.py
+2
-0
tests/lora/test_llama_tp.py
tests/lora/test_llama_tp.py
+2
-0
tests/lora/test_long_context.py
tests/lora/test_long_context.py
+2
-0
tests/lora/test_lora_bias_e2e.py
tests/lora/test_lora_bias_e2e.py
+2
-0
tests/lora/test_lora_checkpoints.py
tests/lora/test_lora_checkpoints.py
+2
-0
tests/lora/test_lora_huggingface.py
tests/lora/test_lora_huggingface.py
+2
-0
tests/lora/test_lora_manager.py
tests/lora/test_lora_manager.py
+2
-0
tests/lora/test_minicpmv_tp.py
tests/lora/test_minicpmv_tp.py
+2
-0
tests/lora/test_mixtral.py
tests/lora/test_mixtral.py
+2
-0
tests/lora/test_peft_helper.py
tests/lora/test_peft_helper.py
+2
-0
tests/lora/test_phi.py
tests/lora/test_phi.py
+2
-0
No files found.
Too many changes to show.
To preserve performance only
1000 of 1000+
files are displayed.
Plain diff
Email patch
tests/kv_transfer/module_test.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
subprocess
import
sys
...
...
tests/kv_transfer/test_lookup_buffer.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
os
import
random
...
...
tests/kv_transfer/test_send_recv.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
os
import
time
from
typing
import
List
...
...
tests/lora/conftest.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
tempfile
from
collections
import
OrderedDict
from
typing
import
Dict
,
List
,
TypedDict
...
...
tests/lora/data/long_context_test_data.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
# ruff: noqa
"""This file contains a dictionary of prompts and golden responses."""
...
...
tests/lora/test_baichuan.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
pytest
...
...
tests/lora/test_chatglm3_tp.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
os
...
...
tests/lora/test_gemma.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
pytest
...
...
tests/lora/test_jamba.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
pytest
...
...
tests/lora/test_layers.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
random
from
copy
import
deepcopy
from
dataclasses
import
dataclass
...
...
tests/lora/test_llama_tp.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
ray
...
...
tests/lora/test_long_context.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
ast
from
typing
import
List
,
Optional
,
Tuple
...
...
tests/lora/test_lora_bias_e2e.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
os
...
...
tests/lora/test_lora_checkpoints.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
pytest
...
...
tests/lora/test_lora_huggingface.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
pytest
...
...
tests/lora/test_lora_manager.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
os
from
typing
import
Dict
,
List
...
...
tests/lora/test_minicpmv_tp.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
os
...
...
tests/lora/test_mixtral.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
pytest
...
...
tests/lora/test_peft_helper.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
json
import
math
import
shutil
...
...
tests/lora/test_phi.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
os
...
...
Prev
1
…
11
12
13
14
15
16
17
18
19
…
50
Next
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