[KDA] Eagerly load Paddle training imports - #3
Merged
SigureMo merged 1 commit intoJul 30, 2026
Conversation
huangjiyi
marked this pull request as ready for review
July 30, 2026 07:08
SigureMo
approved these changes
Jul 30, 2026
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
Move the Paddle KimiDeltaAttention training-path imports out of ShortConvolution and CP convolution runtime methods so a single
import flaloads the complete training closure before Paddle compatibility is disabled. The CP convolution PyLayer now returns gradients only for the Tensor inputs tracked by Paddle.The regression test monitors
__import__andsys.modulesacross dense, padding-mask, varlen, and CP convolution forward/backward. It fails if FLA executes an import after bootstrap or adds/removes an FLA module key.Test plan
python -m pytest --confcutdir=tests/paddle -q tests/paddle/test_kimi_delta_attention.py: 6 passedpython -m pytest --confcutdir=tests/paddle -q tests/paddle: 11 passed; the two existing densedt_biaschecks remain at error ratio0.008083792against tolerance0.008sys.moduleschanges after a 50-module bootstrappython -m pre_commit run --files ...: passedBenchmark / NCU
Not applicable; no kernel or numerical algorithm changes.
Breaking changes
None.