From abfe9dbaa13b637e045227815d40c1928318b9fd Mon Sep 17 00:00:00 2001 From: biondizzle Date: Thu, 28 May 2026 09:49:21 +0000 Subject: [PATCH] test: only 1 tmem_store to verify single column works --- tests/unit/test_tmem_cols.cu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/test_tmem_cols.cu b/tests/unit/test_tmem_cols.cu index 3ac39f41..155b5368 100644 --- a/tests/unit/test_tmem_cols.cu +++ b/tests/unit/test_tmem_cols.cu @@ -45,9 +45,9 @@ __global__ void test_tmem_loop(float* out) { memcpy(&u2, &v2, 4); memcpy(&u3, &v3, 4); tmem_store(tb + 0, u0, u1, u2, u3); - tmem_store(tb + 1, u0, u1, u2, u3); - tmem_store(tb + 2, u0, u1, u2, u3); - tmem_store(tb + 3, u0, u1, u2, u3); + // tmem_store(tb + 1, u0, u1, u2, u3); // Skip for now + // tmem_store(tb + 2, u0, u1, u2, u3); // Skip for now + // tmem_store(tb + 3, u0, u1, u2, u3); // Skip for now } __syncthreads();