-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve LinearBase circular dependency
- Loading branch information
Showing
3 changed files
with
92 additions
and
67 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
def patch_vllm_linear_base_isinstance(): | ||
import builtins | ||
|
||
from vllm.model_executor.layers.linear import LinearBase | ||
|
||
from sglang.srt.layers.linear import LinearBase as PatchedLinearBase | ||
|
||
original_isinstance = builtins.isinstance | ||
|
||
def patched_isinstance(obj, classinfo): | ||
if classinfo is LinearBase: | ||
return original_isinstance(obj, PatchedLinearBase) | ||
return original_isinstance(obj, classinfo) | ||
|
||
builtins.isinstance = patched_isinstance | ||
|
||
|
||
patch_vllm_linear_base_isinstance() |
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