test: only 1 tmem_store to verify single column works

This commit is contained in:
2026-05-28 09:49:21 +00:00
parent 5795589abc
commit abfe9dbaa1

View File

@@ -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();