forked from vllm-project/vllm
-
Notifications
You must be signed in to change notification settings - Fork 48
Fix Triton WNA16 MoE fallback for CompressedTensorsWNA16MoEMethod #875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -487,6 +487,22 @@ def _get_or_set_default() -> str: | |
|
|
||
| logger = logging.getLogger(__name__) | ||
|
|
||
|
|
||
| def _is_rdna_for_moe_default() -> bool: | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove this and the venv variable and do proper is_compatible checks in compressed_tensor_moe.py |
||
| """Check if running on RDNA (gfx11/gfx12) for MoE kernel default. | ||
|
|
||
| On RDNA, the Triton WNA16 MoE kernel outperforms the Exllama MoE kernel | ||
| due to better handling of many-expert routing and avoiding atomicAdd | ||
| K-tiling overhead. | ||
| """ | ||
| try: | ||
| from vllm.platforms.rocm import on_gfx1x | ||
|
|
||
| return on_gfx1x() | ||
| except (ImportError, Exception): | ||
| return False | ||
|
|
||
|
|
||
| environment_variables: dict[str, Callable[[], Any]] = { | ||
| # ================== Installation Time Env Vars ================== | ||
| # Target device of vLLM, supporting [cuda (by default), | ||
|
|
@@ -943,8 +959,13 @@ def _get_or_set_default() -> str: | |
| ), | ||
| # Use exllama 4-bit kernel for MoE GPTQ instead of Triton. | ||
| # Requires exllama-native weight format [E, K/8, N] int32. | ||
| # Defaults to false on RDNA (gfx11/gfx12) where Triton MoE is faster. | ||
| "VLLM_MOE_GPTQ_EXLLAMA": lambda: ( | ||
| os.getenv("VLLM_MOE_GPTQ_EXLLAMA", "true").lower() in ("true", "1") | ||
| os.getenv( | ||
| "VLLM_MOE_GPTQ_EXLLAMA", | ||
| "false" if _is_rdna_for_moe_default() else "true", | ||
| ).lower() | ||
| in ("true", "1") | ||
| ), | ||
| # Optional: enable external Oink custom ops (e.g., Blackwell RMSNorm). | ||
| # Disabled by default. | ||
|
|
||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also test CompressedTensorsWNA16MoEMethod.apply()