From ce8cf9161d2228745aa40135f6e427b603572597 Mon Sep 17 00:00:00 2001 From: Wentao Ye <44945378+yewentao256@users.noreply.github.com> Date: Mon, 16 Mar 2026 11:12:15 -0400 Subject: [PATCH] [Compile] Fix compile warning `st256_cs` in `cuda_vec_utils.cuh` (#36693) Signed-off-by: yewentao256 --- csrc/cuda_vec_utils.cuh | 1 + 1 file changed, 1 insertion(+) diff --git a/csrc/cuda_vec_utils.cuh b/csrc/cuda_vec_utils.cuh index 8f997f3ba..5e2f51f93 100644 --- a/csrc/cuda_vec_utils.cuh +++ b/csrc/cuda_vec_utils.cuh @@ -196,6 +196,7 @@ __forceinline__ __device__ u32x8_t ld256_cs(const u32x8_t* addr) { return val; #else assert(false && "ld256_cs requires SM100+ with CUDA 12.9+"); + return u32x8_t{}; #endif }