test line

This commit is contained in:
root
2026-08-19 03:24:44 +00:00
parent 413e5b1b5f
commit f7ed416754
2 changed files with 6 additions and 3 deletions

View File

@@ -2292,5 +2292,8 @@ class PagedAttention:
) -> None:
key_caches = [kv_cache[0] for kv_cache in kv_caches]
value_caches = [kv_cache[1] for kv_cache in kv_caches]
ops.copy_blocks(key_caches, value_caches, src_to_dists)
# BI100 CoreX 3.2.3: ixformer exposes vllm_copy_blocks, not
# copy_blocks. Call the vendor symbol directly instead of going
# through ops.copy_blocks (which hits the missing name).
import ixformer.functions as _ixf
_ixf.vllm_copy_blocks(key_caches, value_caches, src_to_dists)

View File

@@ -62,4 +62,4 @@ replace_once(
COMPATIBLE_BLOCK,
required=True,
already_contains="BI100 CoreX 3.2.3 exposes vllm_swap_blocks",
)
)