diff --git a/vllm/model_executor/models/qwen3_next.py b/vllm/model_executor/models/qwen3_next.py index 2f2557165..61c8a7ab1 100644 --- a/vllm/model_executor/models/qwen3_next.py +++ b/vllm/model_executor/models/qwen3_next.py @@ -427,7 +427,7 @@ class Qwen3NextGatedDeltaNet(nn.Module, MambaBase): self.aux_stream = aux_stream() self.events = ( [torch.cuda.Event(), torch.cuda.Event()] - if current_platform.is_cuda() + if current_platform.is_cuda_alike() else [None, None] )