From 4c405c25a87ee7eba7b030389605d42283bae182 Mon Sep 17 00:00:00 2001 From: Lucas Wilkinson Date: Mon, 24 Nov 2025 19:43:34 +0000 Subject: [PATCH] fix Signed-off-by: Lucas Wilkinson --- vllm/attention/ops/common.py | 1 - 1 file changed, 1 deletion(-) diff --git a/vllm/attention/ops/common.py b/vllm/attention/ops/common.py index 67c5f7dbba9c..af6766bdd161 100644 --- a/vllm/attention/ops/common.py +++ b/vllm/attention/ops/common.py @@ -194,7 +194,6 @@ def _cp_lse_common( cp_attn_lse = cp_attn_lse.contiguous() lses = cp_group.all_gather(cp_attn_lse, dim=0).view_as(lses) out, lse = correct_attn_out(cp_attn_out, lses, cp_group.rank_in_group, ctx) - assert out.is_contiguous() return out, lse