[V1][Spec Decode][Feature] support tree attention in flash-linear-attenton #29846
+559
−78
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.
Purpose
Tree attention is not supported in flash-linear-attention, which can verify a tree structure of draft tokens in Qwen3-Next model. To support that, added a new parameter to gdn triton kernel called
retrieve_parent_token. This parameter recodes the parent node of each draft token using a 2D (batch_size, max_spec_len+1) tensor. This feature is only enabled if "retrieve_parent_token" is provided. Otherwise, it changes nothing.And I add two test:
tests/v1/spec_decode/test_causal_conv1d_with_eagle_tree.py: test functioncausal_conv1d_updatein speculative decoding with "retrieve_parent_token" or not.tests/v1/spec_decode/test_recurrent_gated_delta_with_eagle_tree.py: test functionfused_recurrent_gated_delta_rulein speculative decoding with "retrieve_parent_token" or not.Test Plan
Test Result
Added test case pass.


TODO