Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions vllm/v1/attention/backends/mla/indexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,10 @@ def get_name() -> str:
def get_supported_kernel_block_sizes() -> list[int | MultipleOf]:
return [256]

@staticmethod
def get_builder_cls() -> type["DeepseekV32IndexerMetadataBuilder"]:
return DeepseekV4IndexerMetadataBuilder


@dataclass
class DeepseekV32IndexerPrefillChunkMetadata:
Expand Down Expand Up @@ -638,6 +642,10 @@ def build(
return attn_metadata


class DeepseekV4IndexerMetadataBuilder(DeepseekV32IndexerMetadataBuilder):
natively_supported_next_n_fp4: list[int] = [1]


def build_prefill_chunk_metadata(
start_idx: int,
end_idx: int,
Expand Down
Loading