fix: typo in tmem row offset test

This commit is contained in:
2026-05-28 22:56:15 +00:00
parent cf6fe71368
commit 1d6a95df32

View File

@@ -84,7 +84,7 @@ __global__ void test_tmem_row_offset(float* results) {
uint32_t row_offset = 32u << 16;
float tmp[8];
asm volatile("tcgen05.ld.sync.aligned.32x32b.x8.b32 {%0,%1,%2,%3,%4,%5,%6,%7},[%8];"
: "=f"(tmp[0]),"=f"(tmp[1]),"=f"(tmp[2]),"f"(tmp[3]),
: "=f"(tmp[0]),"=f"(tmp[1]),"=f"(tmp[2]),"=f"(tmp[3]),
"=f"(tmp[4]),"=f"(tmp[5]),"=f"(tmp[6]),"=f"(tmp[7])
: "r"(tb + row_offset + 0));
asm volatile("tcgen05.wait::ld.sync.aligned;");