[alignment-megatron] PR6: SGLang Backend Surface#25
Draft
maocheng23 wants to merge 1 commit into
Draft
Conversation
Add a clean Megatron backend that calls SGLang-compatible math under a flag: - sglang.py: SGLangLinear, SGLangRMSNorm, SGLangFlashAttention and related modules - matmul_tp_inv.py: TP-invariant matmul dispatch for Megatron layers - transformer_config.py: use_sglang config flag - arguments.py: --use-sglang CLI arg - layers.py: conditional SGLang backend selection in TP layers - gpt_layer_specs.py: SGLang-compatible layer spec builder - test_sglang_extension.py: import, config, and default-path-unchanged tests Default training path remains unchanged when use_sglang is off. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
3 tasks
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
--use-sglangflagChanges
megatron/core/extensions/sglang.py: SGLangLinear, SGLangRMSNorm, SGLangFlashAttention and related modulesmegatron/core/tensor_parallel/matmul_tp_inv.py: TP-invariant matmul dispatchmegatron/core/transformer/transformer_config.py:use_sglangconfig flagmegatron/training/arguments.py:--use-sglangCLI argmegatron/core/tensor_parallel/layers.py: conditional SGLang backend selectionmegatron/core/models/gpt/gpt_layer_specs.py: SGLang-compatible layer spec buildertests/unit_tests/extension/test_sglang_extension.py: unit testsDone when
Test plan
use_sglang🤖 Generated with Claude Code