-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[torch.compile] limit inductor threads and lazy import quant (#10482)
Signed-off-by: youkaichao <[email protected]>
- Loading branch information
1 parent
2f77b6c
commit 388ee3d
Showing
11 changed files
with
178 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Description: Test the lazy import module | ||
# The utility function cannot be placed in `vllm.utils` | ||
# this needs to be a standalone script | ||
|
||
import contextlib | ||
import dataclasses | ||
import sys | ||
import traceback | ||
from typing import Callable, Generator | ||
|
||
|
||
@dataclasses.dataclass | ||
class BlameResult: | ||
found: bool = False | ||
trace_stack: str = "" | ||
|
||
|
||
@contextlib.contextmanager | ||
def blame(func: Callable) -> Generator[BlameResult, None, None]: | ||
""" | ||
Trace the function calls to find the first function that satisfies the | ||
condition. The trace stack will be stored in the result. | ||
Usage: | ||
```python | ||
with blame(lambda: some_condition()) as result: | ||
# do something | ||
if result.found: | ||
print(result.trace_stack) | ||
""" | ||
result = BlameResult() | ||
|
||
def _trace_calls(frame, event, arg=None): | ||
nonlocal result | ||
if event in ['call', 'return']: | ||
# for every function call or return | ||
try: | ||
# Temporarily disable the trace function | ||
sys.settrace(None) | ||
# check condition here | ||
if not result.found and func(): | ||
result.found = True | ||
result.trace_stack = "".join(traceback.format_stack()) | ||
# Re-enable the trace function | ||
sys.settrace(_trace_calls) | ||
except NameError: | ||
# modules are deleted during shutdown | ||
pass | ||
return _trace_calls | ||
|
||
sys.settrace(_trace_calls) | ||
|
||
yield result | ||
|
||
sys.settrace(None) | ||
|
||
|
||
module_name = "torch._inductor.async_compile" | ||
|
||
with blame(lambda: module_name in sys.modules) as result: | ||
import vllm # noqa | ||
|
||
assert not result.found, (f"Module {module_name} is already imported, the" | ||
f" first import location is:\n{result.trace_stack}") | ||
|
||
print(f"Module {module_name} is not imported yet") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters