fix: smart quote in fmha_tma.cuh

This commit is contained in:
2026-05-29 18:22:26 +00:00
parent 345b107f4c
commit bd169ccb0f

View File

@@ -118,7 +118,7 @@ __device__ __forceinline__ void tma_mbarrier_init(uint32_t smem_mbar, uint32_t a
*/
__device__ __forceinline__ void tma_mbarrier_arrive_expect_tx(uint32_t smem_mbar, uint32_t tx_bytes) {
asm volatile("mbarrier.arrive.expect_tx.release.cta.shared::cta.b64 _, [%0], %1;"
:: "r(smem_mbar), "r"(tx_bytes) : "memory");
:: "r"(smem_mbar), "r"(tx_bytes) : "memory");
}
/**