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
38 additions
and
0 deletions
+38
-0
tests/engine/output_processor/test_stop_checker.py
tests/engine/output_processor/test_stop_checker.py
+2
-0
tests/engine/test_arg_utils.py
tests/engine/test_arg_utils.py
+2
-0
tests/engine/test_computed_prefix_blocks.py
tests/engine/test_computed_prefix_blocks.py
+2
-0
tests/engine/test_custom_executor.py
tests/engine/test_custom_executor.py
+2
-0
tests/engine/test_detokenization.py
tests/engine/test_detokenization.py
+2
-0
tests/engine/test_multiproc_workers.py
tests/engine/test_multiproc_workers.py
+2
-0
tests/engine/test_short_mm_context.py
tests/engine/test_short_mm_context.py
+2
-0
tests/engine/test_skip_tokenizer_init.py
tests/engine/test_skip_tokenizer_init.py
+2
-0
tests/engine/test_stop_reason.py
tests/engine/test_stop_reason.py
+1
-0
tests/engine/test_stop_strings.py
tests/engine/test_stop_strings.py
+2
-0
tests/entrypoints/conftest.py
tests/entrypoints/conftest.py
+2
-0
tests/entrypoints/llm/test_accuracy.py
tests/entrypoints/llm/test_accuracy.py
+1
-0
tests/entrypoints/llm/test_chat.py
tests/entrypoints/llm/test_chat.py
+2
-0
tests/entrypoints/llm/test_collective_rpc.py
tests/entrypoints/llm/test_collective_rpc.py
+2
-0
tests/entrypoints/llm/test_encode.py
tests/entrypoints/llm/test_encode.py
+2
-0
tests/entrypoints/llm/test_generate.py
tests/entrypoints/llm/test_generate.py
+2
-0
tests/entrypoints/llm/test_generate_multiple_loras.py
tests/entrypoints/llm/test_generate_multiple_loras.py
+2
-0
tests/entrypoints/llm/test_gpu_utilization.py
tests/entrypoints/llm/test_gpu_utilization.py
+2
-0
tests/entrypoints/llm/test_guided_generate.py
tests/entrypoints/llm/test_guided_generate.py
+2
-0
tests/entrypoints/llm/test_init.py
tests/entrypoints/llm/test_init.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/engine/output_processor/test_stop_checker.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
unittest.mock
import
MagicMock
import
pytest
...
...
tests/engine/test_arg_utils.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
argparse
import
ArgumentTypeError
import
pytest
...
...
tests/engine/test_computed_prefix_blocks.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
pytest
from
vllm.engine.arg_utils
import
EngineArgs
...
...
tests/engine/test_custom_executor.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
asyncio
import
os
from
typing
import
Any
,
Callable
,
Dict
,
List
,
Optional
,
Tuple
,
Union
...
...
tests/engine/test_detokenization.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
pytest
from
vllm.entrypoints.llm
import
LLM
...
...
tests/engine/test_multiproc_workers.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
asyncio
from
concurrent.futures
import
ThreadPoolExecutor
from
functools
import
partial
...
...
tests/engine/test_short_mm_context.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
pytest
from
..conftest
import
IMAGE_ASSETS
...
...
tests/engine/test_skip_tokenizer_init.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
pytest
from
vllm.entrypoints.llm
import
LLM
...
...
tests/engine/test_stop_reason.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
"""Test the different finish_reason="stop" situations during generation:
1. One of the provided stop strings
2. One of the provided stop tokens
...
...
tests/engine/test_stop_strings.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
Any
,
List
,
Optional
import
pytest
...
...
tests/entrypoints/conftest.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
pytest
...
...
tests/entrypoints/llm/test_accuracy.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
"""
This file test accuracy of the vLLM server via LMEval.
It uses local-completions, which interacts with vLLM
...
...
tests/entrypoints/llm/test_chat.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
from
typing
import
List
import
os
...
...
tests/entrypoints/llm/test_collective_rpc.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
pytest
from
vllm
import
LLM
...
...
tests/entrypoints/llm/test_encode.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
weakref
from
typing
import
List
...
...
tests/entrypoints/llm/test_generate.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
weakref
from
typing
import
List
import
os
...
...
tests/entrypoints/llm/test_generate_multiple_loras.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
weakref
import
pytest
...
...
tests/entrypoints/llm/test_gpu_utilization.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
os
from
vllm
import
LLM
,
SamplingParams
from
...utils
import
models_path_prefix
...
...
tests/entrypoints/llm/test_guided_generate.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
json
import
re
import
weakref
...
...
tests/entrypoints/llm/test_init.py
View file @
66b809cc
# SPDX-License-Identifier: Apache-2.0
import
os
import
pytest
...
...
Prev
1
…
6
7
8
9
10
11
12
13
14
…
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