-
-
Notifications
You must be signed in to change notification settings - Fork 10.6k
[Feature][ROCm] Add full graph capture support for TritonAttentionBackend #19158
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
Conversation
Signed-off-by: charlifu <[email protected]>
Signed-off-by: charlifu <[email protected]>
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.
Hello @charlifu, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
Summary of Changes
Hello team,
Gemini or gemini-code-assist here to provide a summary of this pull request. This PR aims to enable full CUDA graph capture support specifically for the TritonAttentionBackend
. This is achieved by making necessary modifications to the attention metadata builder for Triton and updating the model runner to allow Triton when full graph capture is enabled. The changes involve overriding the __init__
and build
methods in the TritonAttentionMetadataBuilder
to handle the specific requirements for graph capture, such as slot mapping initialization and incorporating logic for local and cascade attention within the metadata structure. Additionally, the validation in the GPUModelRunner
is updated to explicitly permit TritonAttentionBackend
alongside FlashAttention v3 when full_cuda_graph
is configured.
Highlights
- Full CUDA Graph Support: Adds support for full CUDA graph capture when using the
TritonAttentionBackend
, which can improve performance by reducing CPU overhead. - TritonAttentionMetadataBuilder Overhaul: The
__init__
andbuild
methods ofTritonAttentionMetadataBuilder
are significantly modified to correctly generate attention metadata compatible with full graph capture, including handling slot mapping, local attention, and cascade attention. - Model Runner Update: The
GPUModelRunner
is updated to recognizeTritonAttentionBackend
as a valid option when thefull_cuda_graph
compilation flag is enabled.
Changelog
- vllm/v1/attention/backends/triton_attn.py
- Overrode
__init__
method inTritonAttentionMetadataBuilder
to store necessary configuration directly. - Overrode
build
method inTritonAttentionMetadataBuilder
to constructFlashAttentionMetadata
for full graph capture, including initializing slot mapping with -1 for unused entries (lines 66-68), and incorporating logic for local attention (lines 72-97) and cascade attention (lines 99-116).
- Overrode
- vllm/v1/worker/gpu_model_runner.py
- Modified the
initialize_attn_backend
method to allowTritonAttentionBackend
whenfull_cuda_graph
is enabled, in addition to FlashAttention v3 (lines 2048-2050).
- Modified the
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command>
or @gemini-code-assist <command>
. Below is a summary of the supported commands.
Feature | Command | Description |
---|---|---|
Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/
folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
Tokens flow like waves,
Graph captures the kernel's dance,
Speed on ROCm wakes.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
👋 Hi! Thank you for contributing to the vLLM project. 💬 Join our developer Slack at https://slack.vllm.ai to discuss your PR in #pr-reviews, coordinate on features in #feat- channels, or join special interest groups in #sig- channels. Just a reminder: PRs would not trigger full CI run by default. Instead, it would only run Once the PR is approved and ready to go, your PR reviewer(s) can run CI to test the changes comprehensively before merging. To run CI, PR reviewers can either: Add 🚀 |
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.
Code Review
This pull request successfully adds full graph capture support for TritonAttentionBackend
. The changes in gpu_model_runner.py
correctly exempt TritonAttentionBackend
from the FA3-only restriction for full CUDA graphs. The core logic in triton_attn.py
achieves its goal by overriding __init__
and build
in TritonAttentionMetadataBuilder
to avoid dependencies on AOT scheduling, effectively passing None
for AOT-related scheduler metadata.
The main area for potential improvement is the significant code duplication introduced in TritonAttentionMetadataBuilder.build
, which mirrors much of FlashAttentionMetadataBuilder.build
. Addressing this could enhance long-term maintainability.
Summary of Findings
- Code Duplication in TritonAttentionMetadataBuilder: The
__init__
andbuild
methods inTritonAttentionMetadataBuilder
are largely duplicated fromFlashAttentionMetadataBuilder
to avoid AOT scheduling dependencies. This could lead to maintenance issues if the base class logic changes. Consider refactoring to reduce duplication or adding a TODO for future improvement.
Merge Readiness
The pull request effectively enables full graph capture for TritonAttentionBackend. The changes are functional and address the described objectives. However, there's a medium-severity concern regarding code duplication in TritonAttentionMetadataBuilder
, which could impact future maintainability. It would be beneficial to discuss potential refactoring strategies for this duplication. I am unable to approve pull requests, but I recommend addressing or acknowledging the code duplication concern before merging. Other reviewers should make the final decision.
|
||
def __init__(self, runner: "GPUModelRunner", kv_cache_spec: AttentionSpec, | ||
block_table: BlockTable): | ||
super().__init__(runner, kv_cache_spec, block_table) | ||
model_config = runner.model_config | ||
compilation_config = runner.vllm_config.compilation_config | ||
|
||
self.runner = runner | ||
self.use_full_cuda_graph = compilation_config.full_cuda_graph | ||
self.num_heads_q = model_config.get_num_attention_heads( | ||
runner.parallel_config) | ||
self.num_heads_kv = model_config.get_num_kv_heads( | ||
runner.parallel_config) | ||
self.headdim = model_config.get_head_size() | ||
self.block_size = kv_cache_spec.block_size | ||
self.kv_cache_spec = kv_cache_spec | ||
self.block_table = block_table | ||
|
||
# Sliding window size to be used with the AOT scheduler will be | ||
# populated on first build() call. | ||
self.aot_sliding_window: Optional[tuple[int, int]] = None | ||
self.aot_schedule = False | ||
|
||
def build(self, num_reqs: int, num_actual_tokens: int, max_query_len: int, | ||
common_prefix_len: int, | ||
common_attn_metadata: CommonAttentionMetadata): | ||
max_seq_len = int(self.runner.seq_lens_np[:num_reqs].max()) | ||
query_start_loc = common_attn_metadata.query_start_loc | ||
seq_lens = common_attn_metadata.seq_lens | ||
block_table = self.block_table | ||
block_table_tensor = block_table.get_device_tensor()[:num_reqs] | ||
|
||
block_table.slot_mapping[:num_actual_tokens].copy_( | ||
block_table.slot_mapping_cpu[:num_actual_tokens], | ||
non_blocking=True) | ||
# Fill unused with -1. Needed for reshape_and_cache in full cuda graph | ||
# mode. | ||
block_table.slot_mapping[num_actual_tokens:].fill_(-1) | ||
|
||
slot_mapping = block_table.slot_mapping[:num_actual_tokens] | ||
|
||
# for local attention | ||
local_attn_metadata = None | ||
if self.runner.attention_chunk_size is not None: | ||
seqlens_q_local_np, virt_q_cu_seqlens_np, virt_k_seqlens_np, \ | ||
virt_block_table_tensor = make_local_attention_virtual_batches( | ||
self.runner.attention_chunk_size, | ||
self.runner.query_start_loc_np[:num_reqs + 1], | ||
self.runner.seq_lens_np[:num_reqs], | ||
block_table_tensor, | ||
self.block_size, | ||
) | ||
local_query_start_loc = torch.from_numpy(virt_q_cu_seqlens_np).to( | ||
self.runner.device, non_blocking=True) | ||
local_seqused_k = torch.from_numpy(virt_k_seqlens_np).to( | ||
self.runner.device, non_blocking=True) | ||
local_max_query_len = seqlens_q_local_np.max() | ||
local_max_seq_len = virt_k_seqlens_np.max() | ||
|
||
local_attn_metadata = FlashAttentionMetadata.LocalAttentionMetadata( | ||
local_query_start_loc=local_query_start_loc, | ||
local_seqused_k=local_seqused_k, | ||
local_block_table=virt_block_table_tensor, | ||
local_max_query_len=local_max_query_len, | ||
local_max_seq_len=local_max_seq_len, | ||
local_scheduler_metadata=None, | ||
) | ||
|
||
use_cascade = common_prefix_len > 0 | ||
|
||
if use_cascade: | ||
cu_prefix_query_lens = torch.tensor([0, num_actual_tokens], | ||
dtype=torch.int32, | ||
device=self.runner.device) | ||
prefix_kv_lens = torch.tensor([common_prefix_len], | ||
dtype=torch.int32, | ||
device=self.runner.device) | ||
suffix_kv_lens = (self.runner.seq_lens_np[:num_reqs] - | ||
common_prefix_len) | ||
suffix_kv_lens = torch.from_numpy(suffix_kv_lens).to( | ||
self.runner.device) | ||
else: | ||
cu_prefix_query_lens = None | ||
prefix_kv_lens = None | ||
suffix_kv_lens = None | ||
prefix_scheduler_metadata = None | ||
|
||
attn_metadata = FlashAttentionMetadata( | ||
num_actual_tokens=num_actual_tokens, | ||
max_query_len=max_query_len, | ||
query_start_loc=query_start_loc, | ||
max_seq_len=max_seq_len, | ||
seq_lens=seq_lens, | ||
block_table=block_table_tensor, | ||
slot_mapping=slot_mapping, | ||
use_cascade=use_cascade, | ||
common_prefix_len=common_prefix_len, | ||
cu_prefix_query_lens=cu_prefix_query_lens, | ||
prefix_kv_lens=prefix_kv_lens, | ||
suffix_kv_lens=suffix_kv_lens, | ||
local_attn_metadata=local_attn_metadata, | ||
prefix_scheduler_metadata=prefix_scheduler_metadata, | ||
) | ||
return attn_metadata |
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.
The __init__
and build
methods in TritonAttentionMetadataBuilder
are substantially similar to those in the parent FlashAttentionMetadataBuilder
. While this achieves the goal of avoiding the AOT scheduling dependency from FlashAttention for Triton, it introduces significant code duplication. For instance, the logic for handling local_attn_metadata
and cascade attention
appears to be largely identical.
This duplication could pose a maintenance challenge:
- If common logic within
FlashAttentionMetadataBuilder.build
(e.g., handling of local attention, cascade attention, slot mapping, block table) is updated or bug-fixed, these changes would need to be manually mirrored inTritonAttentionMetadataBuilder.build
. - It increases the overall codebase size with redundant logic.
Could we explore ways to reduce this duplication for better long-term maintainability? For example:
- Could
FlashAttentionMetadataBuilder.build
be refactored to make the AOT scheduling part more modular or optional? Perhaps by passing ascheduler_fn
or by having its internalschedule
helper function returnNone
ifself.aot_schedule
isFalse
, and then the mainbuild
method handlesNone
scheduler metadata appropriately. - Could common sections (like local attention setup, cascade setup) be extracted into protected helper methods in
FlashAttentionMetadataBuilder
thatTritonAttentionMetadataBuilder
could then call, overriding only the parts related to AOT scheduling?
This would allow TritonAttentionMetadataBuilder
to inherit more of the common logic while still achieving its specific goal. If this level of refactoring is out of scope for this PR, adding a TODO
to track this potential future improvement would be valuable.
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.
I think honestly we should further decouple the builders so this is fine.
Signed-off-by: charlifu <[email protected]>
Signed-off-by: charlifu <[email protected]>
Signed-off-by: charlifu <[email protected]>
Signed-off-by: charlifu <[email protected]>
Signed-off-by: charlifu <[email protected]>
Signed-off-by: charlifu <[email protected]>
Signed-off-by: charlifu <[email protected]>
Signed-off-by: charlifu <[email protected]>
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.
Thanks for adding the support.
Could you list the test plan and results? Also could you add some unittest to cover this case?
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.
FYI: we will have to align this PR with #18581 to make sure we have a consistent AttentionMetadataBuilder
API for building for full CUDA graphs. Personally I like using a for_cudagraph_capture: bool = False
flag to reduce the amount of different build functions
I'll respond in more detail tomorrow on my PR but I think a big downside is touching all of the build functions. I also think this is fundamentally different from the old way with direct met data passthrough construction - here the intention of the two different build methods is clearly different, and one can call the other. Happy to discuss more tomorrow, sorry for the late response. But yeah let's figure this out before we merge either PR. |
Signed-off-by: charlifu <[email protected]>
Signed-off-by: charlifu <[email protected]>
Head branch was pushed to by a user without write access
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.
Looks good!
# Sliding window size to be used with the AOT scheduler will be | ||
# populated on first build() call. | ||
self.aot_sliding_window: Optional[tuple[int, int]] = None | ||
self.aot_schedule = False |
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.
nit: Seems like aot_schedule
and aot_sliding_window
are not used? can these be removed?
runner.parallel_config) | ||
self.num_heads_kv = model_config.get_num_kv_heads( | ||
runner.parallel_config) | ||
self.headdim = model_config.get_head_size() |
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.
nit: seems like headdim
is not used, can this be removed?
self.use_full_cuda_graph = compilation_config.full_cuda_graph | ||
self.num_heads_q = model_config.get_num_attention_heads( | ||
runner.parallel_config) | ||
self.num_heads_kv = model_config.get_num_kv_heads( |
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.
nit: seems like num_heads_q
and num_heads_kv
are not used can these be removed?
compilation_config = runner.vllm_config.compilation_config | ||
|
||
self.runner = runner | ||
self.use_full_cuda_graph = compilation_config.full_cuda_graph |
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.
nit: seems like use_full_cuda_graph
is unused can this be removed?
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.
overall this seems very close to ready; There seems to be a few unused variables/attributes added, you please audit for unused variables please
Signed-off-by: charlifu <[email protected]>
Unused vars removed. Not sure if we might need them in the future. But we can always add them back. |
Signed-off-by: charlifu <[email protected]>
This PR adds full graph capture for TritonAttentionBackend.