mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-20 17:45:28 +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>
71 lines
2.1 KiB
Python
71 lines
2.1 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import contextlib
|
|
import dataclasses
|
|
import sys
|
|
import traceback
|
|
from typing import Callable, Generator, Generic, TypeVar
|
|
|
|
_T = TypeVar("_T")
|
|
|
|
|
|
@dataclasses.dataclass
|
|
class MonitoredValues(Generic[_T]):
|
|
values: list[_T] = dataclasses.field(default_factory=list)
|
|
trace_stacks: list[str] = dataclasses.field(default_factory=list)
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def monitor(
|
|
measure_func: Callable[[],
|
|
_T]) -> Generator[MonitoredValues[_T], None, None]:
|
|
"""
|
|
Trace the function calls to continuously monitor the change of
|
|
a value.
|
|
|
|
Usage:
|
|
|
|
```python
|
|
|
|
def measure_func():
|
|
... # measure the current value
|
|
return current_value
|
|
|
|
with monitor(measure_func) as monitored_values:
|
|
# do something
|
|
|
|
monitored_values.values # all changes of the values
|
|
monitored_values.trace_stacks # trace stacks of every change
|
|
```
|
|
"""
|
|
monitored_values = MonitoredValues[_T]()
|
|
|
|
def _trace_calls(frame, event, arg=None):
|
|
nonlocal monitored_values
|
|
if event in ['line']:
|
|
# triggered by every line of Python code.
|
|
# only Python functions will trigger it,
|
|
# c/cpp functions will not trigger it.
|
|
try:
|
|
# Temporarily disable the trace function
|
|
sys.settrace(None)
|
|
# do a measurement
|
|
current_value = measure_func()
|
|
if len(monitored_values.values
|
|
) == 0 or current_value != monitored_values.values[-1]:
|
|
monitored_values.values.append(current_value)
|
|
monitored_values.trace_stacks.append("".join(
|
|
traceback.format_stack()))
|
|
# Re-enable the trace function
|
|
sys.settrace(_trace_calls)
|
|
except NameError:
|
|
# modules are deleted during shutdown
|
|
pass
|
|
return _trace_calls
|
|
|
|
try:
|
|
sys.settrace(_trace_calls)
|
|
yield monitored_values
|
|
finally:
|
|
sys.settrace(None)
|