Unverified Commit ce8cf916 authored by Wentao Ye's avatar Wentao Ye Committed by GitHub
Browse files

[Compile] Fix compile warning `st256_cs` in `cuda_vec_utils.cuh` (#36693)


Signed-off-by: default avataryewentao256 <zhyanwentao@126.com>
parent 18be11fd
...@@ -196,6 +196,7 @@ __forceinline__ __device__ u32x8_t ld256_cs(const u32x8_t* addr) { ...@@ -196,6 +196,7 @@ __forceinline__ __device__ u32x8_t ld256_cs(const u32x8_t* addr) {
return val; return val;
#else #else
assert(false && "ld256_cs requires SM100+ with CUDA 12.9+"); assert(false && "ld256_cs requires SM100+ with CUDA 12.9+");
return u32x8_t{};
#endif #endif
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment