mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-01-26 14:54:34 +08:00
- **Add SPDX license headers to python source files**
- **Check for SPDX headers using pre-commit**
commit 9d7ef44c3cfb72ca4c32e1c677d99259d10d4745
Author: Russell Bryant <rbryant@redhat.com>
Date: Fri Jan 31 14:18:24 2025 -0500
Add SPDX license headers to python source files
This commit adds SPDX license headers to python source files as
recommended to
the project by the Linux Foundation. These headers provide a concise way
that is
both human and machine readable for communicating license information
for each
source file. It helps avoid any ambiguity about the license of the code
and can
also be easily used by tools to help manage license compliance.
The Linux Foundation runs license scans against the codebase to help
ensure
we are in compliance with the licenses of the code we use, including
dependencies. Having these headers in place helps that tool do its job.
More information can be found on the SPDX site:
- https://spdx.dev/learn/handling-license-info/
Signed-off-by: Russell Bryant <rbryant@redhat.com>
commit 5a1cf1cb3b80759131c73f6a9dddebccac039dea
Author: Russell Bryant <rbryant@redhat.com>
Date: Fri Jan 31 14:36:32 2025 -0500
Check for SPDX headers using pre-commit
Signed-off-by: Russell Bryant <rbryant@redhat.com>
---------
Signed-off-by: Russell Bryant <rbryant@redhat.com>
53 lines
1.9 KiB
Python
53 lines
1.9 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
'''
|
|
Worker-related helper functions.
|
|
'''
|
|
|
|
from vllm.utils import STR_NOT_IMPL_ENC_DEC_ERR_STRS
|
|
from vllm.worker.model_runner import GPUModelRunnerBase
|
|
|
|
|
|
def assert_enc_dec_mr_supported_scenario(
|
|
enc_dec_mr: GPUModelRunnerBase) -> None:
|
|
'''
|
|
Asserted that the provided encoder/decoder model runner instance reflects
|
|
a supported scenario.
|
|
'''
|
|
|
|
# Reminder: Please update docs/source/features/compatibility_matrix.md
|
|
# If the feature combo become valid
|
|
|
|
if enc_dec_mr.cache_config.enable_prefix_caching:
|
|
raise NotImplementedError(
|
|
STR_NOT_IMPL_ENC_DEC_ERR_STRS['STR_NOT_IMPL_ENC_DEC_PREFIX_CACHE'])
|
|
|
|
if enc_dec_mr.sliding_window is not None:
|
|
raise NotImplementedError(
|
|
STR_NOT_IMPL_ENC_DEC_ERR_STRS['STR_NOT_IMPL_ENC_DEC_SWA'])
|
|
|
|
if enc_dec_mr.scheduler_config.chunked_prefill_enabled:
|
|
raise NotImplementedError(STR_NOT_IMPL_ENC_DEC_ERR_STRS[
|
|
'STR_NOT_IMPL_ENC_DEC_CHUNKED_PREFILL'])
|
|
|
|
if getattr(enc_dec_mr.model_config.hf_config, 'attn_logit_softcapping',
|
|
None) is not None:
|
|
raise NotImplementedError(
|
|
STR_NOT_IMPL_ENC_DEC_ERR_STRS['STR_NOT_IMPL_ENC_DEC_LOGIT_SOFTCAP']
|
|
)
|
|
|
|
if enc_dec_mr.lora_config is not None:
|
|
raise NotImplementedError(
|
|
STR_NOT_IMPL_ENC_DEC_ERR_STRS['STR_NOT_IMPL_ENC_DEC_LORA'])
|
|
|
|
if enc_dec_mr.parallel_config.pipeline_parallel_size > 1:
|
|
raise NotImplementedError(
|
|
STR_NOT_IMPL_ENC_DEC_ERR_STRS['STR_NOT_IMPL_ENC_DEC_PP'])
|
|
|
|
if enc_dec_mr.scheduler_config.num_lookahead_slots > 0:
|
|
raise NotImplementedError(
|
|
STR_NOT_IMPL_ENC_DEC_ERR_STRS['STR_NOT_IMPL_ENC_DEC_SPEC_DEC'])
|
|
|
|
if enc_dec_mr.prompt_adapter_config is not None:
|
|
raise NotImplementedError(STR_NOT_IMPL_ENC_DEC_ERR_STRS[
|
|
'STR_NOT_IMPL_ENC_DEC_PROMPT_ADAPTER'])
|