We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d77fec2 commit d8dd6caCopy full SHA for d8dd6ca
vllm/v1/attention/backends/utils.py
@@ -774,9 +774,10 @@ def build(self,
774
new_common_attn_metadata, fast_build)
775
776
class KVSharingFastPrefillAttentionMetadata(
777
- metadata.__class__, KVSharingFastPrefillMetadata):
+ metadata.__class__, # type: ignore
778
+ KVSharingFastPrefillMetadata):
779
- def __init__(self, metadata, common_attention_metadata):
780
+ def __init__(self, metadata, common_attn_metadata):
781
# Shallow copy all fields in metadata cls
782
for field in fields(metadata.__class__):
783
setattr(self, field.name,
0 commit comments