test: 2 tmem_stores with syncwarp between

This commit is contained in:
2026-05-28 09:30:37 +00:00
parent a87f20a4ae
commit 22fb861447

View File

@@ -78,9 +78,12 @@ test_umma_qk_hd16(
}
__syncthreads();
// Zero TMEM — test just 1 store call, no fence
// Zero TMEM — test 2 stores with syncwarp between them
if (wid == 0) {
tmem_store(tmem_base, 0, 0, 0, 0);
__syncwarp();
tmem_store(tmem_base + 1, 0, 0, 0, 0);
__syncwarp();
}
__syncthreads();