From e2b914be5edad527ade7262b5630a0f889a14314 Mon Sep 17 00:00:00 2001 From: biondizzle Date: Sun, 24 May 2026 06:40:10 +0000 Subject: [PATCH] D1: Remove qh.commit() - pipeline handles commit internally --- dsv4/kernels/attention/fmha.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/dsv4/kernels/attention/fmha.py b/dsv4/kernels/attention/fmha.py index 7214f10c..8a0bee2e 100644 --- a/dsv4/kernels/attention/fmha.py +++ b/dsv4/kernels/attention/fmha.py @@ -221,15 +221,12 @@ class FmhaKernel: # Load Q[k_sub] → sQ qh = qp.acquire_and_advance() cute.copy(tma_q, tAgQ[(None, Int32(k_sub))], tAsQ[(None, qh.index)], tma_bar_ptr=qh.barrier) - qh.commit() # Load K[k_sub] → sK kvh = kvp.acquire_and_advance() cute.copy(tma_k, tBgK[(None, Int32(k_sub))], tBsK[(None, kvh.index)], tma_bar_ptr=kvh.barrier) - kvh.commit() # Load V[kt] → sV kvh = kvp.acquire_and_advance() cute.copy(tma_v, tVgV[(None, Int32(kt))], tVsV[(None, kvh.index)], tma_bar_ptr=kvh.barrier) - kvh.commit() qp.tail() kvp.tail() else: