fix some syntax errors (#3658)

This commit is contained in:
Illia Silin
2026-01-27 09:59:39 -08:00
committed by GitHub
parent 0cc83cb8e8
commit b26cb596b0
2 changed files with 5 additions and 5 deletions

View File

@@ -1242,7 +1242,7 @@ inline __host__ __device__ float2_t type_convert<float2_t, pk_i4_t>(pk_i4_t x)
#ifdef CK_USE_PK4_LAYOUT_SHUFFLE
float2_t res = {x_h, x_l};
#elif
#else
float2_t res = {x_l, x_h};
#endif
return res;