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
1caca5a5
Unverified
Commit
1caca5a5
authored
Jul 04, 2025
by
Jee Jee Li
Committed by
GitHub
Jul 04, 2025
Browse files
[Misc] Add SPDX-FileCopyrightText (#20428)
Signed-off-by:
Jee Jee Li
<
pandaleefree@gmail.com
>
parent
783921d8
Changes
58
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
0 deletions
+20
-0
benchmarks/kernels/bench_fp8_gemm.py
benchmarks/kernels/bench_fp8_gemm.py
+1
-0
examples/offline_inference/spec_decode.py
examples/offline_inference/spec_decode.py
+1
-0
examples/online_serving/disaggregated_serving_p2p_nccl_xpyd/disagg_proxy_p2p_nccl_xpyd.py
...gated_serving_p2p_nccl_xpyd/disagg_proxy_p2p_nccl_xpyd.py
+1
-0
examples/online_serving/multi_instance_data_parallel.py
examples/online_serving/multi_instance_data_parallel.py
+1
-0
examples/online_serving/openai_chat_completion_client_with_tools_xlam.py
..._serving/openai_chat_completion_client_with_tools_xlam.py
+1
-0
examples/online_serving/openai_chat_completion_client_with_tools_xlam_streaming.py
...penai_chat_completion_client_with_tools_xlam_streaming.py
+1
-0
tests/compile/test_fusion_attn.py
tests/compile/test_fusion_attn.py
+1
-0
tests/kernels/moe/parallel_utils.py
tests/kernels/moe/parallel_utils.py
+1
-0
tests/kernels/moe/test_deepep_deepgemm_moe.py
tests/kernels/moe/test_deepep_deepgemm_moe.py
+1
-0
tests/kernels/moe/test_deepep_moe.py
tests/kernels/moe/test_deepep_moe.py
+1
-0
tests/kernels/moe/test_deepgemm.py
tests/kernels/moe/test_deepgemm.py
+1
-0
tests/kernels/test_apply_repetition_penalties.py
tests/kernels/test_apply_repetition_penalties.py
+1
-0
tests/kernels/test_flex_attention.py
tests/kernels/test_flex_attention.py
+1
-0
tests/models/language/pooling/test_intfloat.py
tests/models/language/pooling/test_intfloat.py
+1
-0
tests/quantization/test_rtn.py
tests/quantization/test_rtn.py
+1
-0
tests/tool_use/test_minimax_tool_parser.py
tests/tool_use/test_minimax_tool_parser.py
+1
-0
tests/tool_use/test_xlam_tool_parser.py
tests/tool_use/test_xlam_tool_parser.py
+1
-0
tests/v1/sample/test_logits_processors.py
tests/v1/sample/test_logits_processors.py
+1
-0
tests/v1/test_request.py
tests/v1/test_request.py
+1
-0
tests/v1/tpu/test_spmd_model_weight_loading.py
tests/v1/tpu/test_spmd_model_weight_loading.py
+1
-0
No files found.
benchmarks/kernels/bench_fp8_gemm.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import
argparse
import
argparse
import
copy
import
copy
import
itertools
import
itertools
...
...
examples/offline_inference/spec_decode.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
from
transformers
import
AutoTokenizer
from
transformers
import
AutoTokenizer
...
...
examples/online_serving/disaggregated_serving_p2p_nccl_xpyd/disagg_proxy_p2p_nccl_xpyd.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import
os
import
os
import
socket
import
socket
...
...
examples/online_serving/multi_instance_data_parallel.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import
asyncio
import
asyncio
from
typing
import
Optional
from
typing
import
Optional
...
...
examples/online_serving/openai_chat_completion_client_with_tools_xlam.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
# ruff: noqa: E501
# ruff: noqa: E501
"""
"""
Set up this example by starting a vLLM OpenAI-compatible server with tool call
Set up this example by starting a vLLM OpenAI-compatible server with tool call
...
...
examples/online_serving/openai_chat_completion_client_with_tools_xlam_streaming.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
# ruff: noqa: E501
# ruff: noqa: E501
"""
"""
Set up this example by starting a vLLM OpenAI-compatible server with tool call
Set up this example by starting a vLLM OpenAI-compatible server with tool call
...
...
tests/compile/test_fusion_attn.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
from
typing
import
Optional
from
typing
import
Optional
import
pytest
import
pytest
...
...
tests/kernels/moe/parallel_utils.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
"""
"""
DeepEP test utilities
DeepEP test utilities
"""
"""
...
...
tests/kernels/moe/test_deepep_deepgemm_moe.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
"""
"""
Test DeepEP + DeepGEMM integration
Test DeepEP + DeepGEMM integration
DeepGEMM are gemm kernels specialized for the
DeepGEMM are gemm kernels specialized for the
...
...
tests/kernels/moe/test_deepep_moe.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
"""
"""
Test deepep dispatch-combine logic
Test deepep dispatch-combine logic
"""
"""
...
...
tests/kernels/moe/test_deepgemm.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
"""
"""
Unit-test DeepGEMM FP8 kernels (no DeepEP).
Unit-test DeepGEMM FP8 kernels (no DeepEP).
Compare DeepGEMM path against the Triton fallback inside vLLM's fused_experts.
Compare DeepGEMM path against the Triton fallback inside vLLM's fused_experts.
...
...
tests/kernels/test_apply_repetition_penalties.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import
pytest
import
pytest
import
torch
import
torch
...
...
tests/kernels/test_flex_attention.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
"""Integration tests for FlexAttention backend vs default backend"""
"""Integration tests for FlexAttention backend vs default backend"""
import
random
import
random
...
...
tests/models/language/pooling/test_intfloat.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import
pytest
import
pytest
from
...utils
import
EmbedModelInfo
from
...utils
import
EmbedModelInfo
...
...
tests/quantization/test_rtn.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
# Copyright © 2025, Oracle and/or its affiliates.
# Copyright © 2025, Oracle and/or its affiliates.
"""Tests RTN quantization startup and generation,
"""Tests RTN quantization startup and generation,
doesn't test correctness
doesn't test correctness
...
...
tests/tool_use/test_minimax_tool_parser.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
# ruff: noqa: E501
# ruff: noqa: E501
import
json
import
json
...
...
tests/tool_use/test_xlam_tool_parser.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import
json
import
json
...
...
tests/v1/sample/test_logits_processors.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import
random
import
random
from
collections.abc
import
Callable
from
collections.abc
import
Callable
...
...
tests/v1/test_request.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
from
vllm.v1.request
import
RequestStatus
from
vllm.v1.request
import
RequestStatus
...
...
tests/v1/tpu/test_spmd_model_weight_loading.py
View file @
1caca5a5
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import
gc
import
gc
import
tempfile
import
tempfile
...
...
Prev
1
2
3
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