""" Stage B v28c: Debug deadlock. Skip the epilogue. Just do QK + softmax packing + PV MMA. Verify PV MMA completes (no deadlock). """ import torch, cutlass, cutlass.cute as cute, cutlass.utils as utils, cutlass.pipeline as pipeline from cutlass.cute.nvgpu import cpasync, tcgen05 from cutlass import Float32, BFloat16, Int32, Boolean, const_expr from cutlass.utils import LayoutEnum from cutlass.utils.tmem_allocator import find_tmem_tensor_col_offset import cuda.bindings.driver as cuda class StageBNoEpi: def __init__(self, pv_mn, use_2cta_instrs=False): self.pv_mn = pv_mn self.qk_acc_dtype = Float32; self.q_dtype = BFloat16; self.b_dtype = BFloat16 self.o_dtype = BFloat16; self.c_dtype = BFloat16; self.acc_dtype = Float32 self.use_2cta_instrs = use_2cta_instrs self.mma_tiler_mn = (128, 128); self.cluster_shape_mn = (1, 1) self.cta_group = tcgen05.CtaGroup.TWO if use_2cta_instrs else tcgen05.CtaGroup.ONE self.epilogue_warp_id = (0, 1, 2, 3) self.mma_warp_id = 4; self.tma_warp_id = 5 self.threads_per_cta = 192 self.tmem_alloc_sync_bar_id = 2; self.tmem_dealloc_sync_bar_id = 3 self.num_ab_stage = 1; self.num_acc_stage = 1 def _setup(self, qk_mma, pv_mma): qk_inst_k = cute.size(qk_mma.shape_mnk, mode=[2]) self.qk_mma_tiler = (*self.mma_tiler_mn, qk_inst_k * 4) self.pv_mma_tiler = (self.qk_mma_tiler[0], self.qk_mma_tiler[2], self.qk_mma_tiler[1]) self.mma_tiler = self.qk_mma_tiler self.cluster_layout_vmnk = cute.tiled_divide(cute.make_layout((1,1,1)), (qk_mma.thr_id.shape,)) self.num_ab_stage = 1; self.num_acc_stage = 1 self.a_smem_s = utils.sm100.make_smem_layout_a(qk_mma, self.mma_tiler, self.q_dtype, 1) self.b_smem_s = utils.sm100.make_smem_layout_b(qk_mma, self.mma_tiler, self.b_dtype, 1) self.v_smem_s = utils.sm100.make_smem_layout_b(pv_mma, self.pv_mma_tiler, self.b_dtype, 1) self.p_tmem_s = utils.sm100.make_smem_layout_a(pv_mma, self.pv_mma_tiler, self.q_dtype, 1) qk_thr = qk_mma.get_slice(0) qk_acc_shape = qk_thr.partition_shape_C(self.qk_mma_tiler[:2]) tStS = qk_thr.make_fragment_C(qk_acc_shape) s_cols = find_tmem_tensor_col_offset(tStS) pv_thr = pv_mma.get_slice(0) pv_acc_shape = pv_thr.partition_shape_C(self.pv_mma_tiler[:2]) tOtO = pv_thr.make_fragment_C(pv_acc_shape) o_cols = find_tmem_tensor_col_offset(tOtO) self.tilePlikeFP32 = self.qk_mma_tiler[1] // Float32.width * self.o_dtype.width self.tmem_s0_offset = 0 self.tmem_p0_offset = 32 self.tmem_o0_offset = s_cols tCtS_fake = qk_mma.make_fragment_C(cute.append(qk_acc_shape, self.num_acc_stage)) tCtO_fake = pv_mma.make_fragment_C(cute.append(pv_acc_shape, self.num_acc_stage)) self.num_tmem_alloc_cols = utils.get_num_tmem_alloc_cols([tCtS_fake, tCtO_fake], arch="sm_100") print(f"[v28c] qk_mma_tiler={self.qk_mma_tiler} pv_mma_tiler={self.pv_mma_tiler}") print(f"[v28c] s_cols={s_cols} o_cols={o_cols} num_tmem={self.num_tmem_alloc_cols}") a_smem = cute.slice_(self.a_smem_s, (None, None, None, 0)) b_smem = cute.slice_(self.b_smem_s, (None, None, None, 0)) self.num_tma_load_bytes = ( cute.size_in_bytes(self.q_dtype, a_smem) + cute.size_in_bytes(self.b_dtype, b_smem) ) * cute.size(qk_mma.thr_id.shape) @cute.jit def __call__(self, q: cute.Tensor, k: cute.Tensor, v: cute.Tensor, stream: cuda.CUstream): self.q_dtype = q.element_type; self.b_dtype = k.element_type self.o_dtype = BFloat16; self.c_dtype = BFloat16 self.a_major = LayoutEnum.from_tensor(q).mma_major_mode() self.b_major = LayoutEnum.from_tensor(k).mma_major_mode() self.v_major = LayoutEnum.from_tensor(v).mma_major_mode() qk_mma = utils.sm100.make_trivial_tiled_mma( self.q_dtype, self.b_dtype, self.a_major, self.b_major, self.qk_acc_dtype, self.cta_group, self.mma_tiler_mn, tcgen05.OperandSource.SMEM) qk_inst_k = cute.size(qk_mma.shape_mnk, mode=[2]) qk_mma_tiler = (*self.mma_tiler_mn, qk_inst_k * 4) pv_mma_tiler = (qk_mma_tiler[0], qk_mma_tiler[2], qk_mma_tiler[1]) pv_mma = utils.sm100.make_trivial_tiled_mma( self.q_dtype, self.b_dtype, cute.nvgpu.OperandMajorMode.K, self.v_major, self.qk_acc_dtype, self.cta_group, self.pv_mn, tcgen05.OperandSource.TMEM) self._setup(qk_mma, pv_mma) q_smem = cute.slice_(self.a_smem_s, (None, None, None, 0)) k_smem = cute.slice_(self.b_smem_s, (None, None, None, 0)) v_smem = cute.slice_(self.v_smem_s, (None, None, None, 0)) tma_q, tma_tq = cute.nvgpu.make_tiled_tma_atom_A( utils.sm100.cluster_shape_to_tma_atom_A(self.cluster_shape_mn, qk_mma.thr_id), q, q_smem, self.mma_tiler, qk_mma, self.cluster_layout_vmnk.shape) tma_k, tma_tk = cute.nvgpu.make_tiled_tma_atom_B( utils.sm100.cluster_shape_to_tma_atom_B(self.cluster_shape_mn, qk_mma.thr_id), k, k_smem, self.mma_tiler, qk_mma, self.cluster_layout_vmnk.shape) tma_v, tma_tv = cute.nvgpu.make_tiled_tma_atom_B( utils.sm100.cluster_shape_to_tma_atom_B(self.cluster_shape_mn, pv_mma.thr_id), v, v_smem, self.pv_mma_tiler, pv_mma, self.cluster_layout_vmnk.shape) self._kernel(qk_mma, pv_mma, tma_q, tma_tq, tma_k, tma_tk, tma_v, tma_tv, self.cluster_layout_vmnk, self.a_smem_s, self.b_smem_s, self.v_smem_s, self.p_tmem_s ).launch(grid=(1,1,1), block=[self.threads_per_cta,1,1], stream=stream) @cute.kernel def _kernel(self, qk_mma, pv_mma, tma_q, mQ, tma_k, mK, tma_v, mV, cl_vmnk, a_smem_s, b_smem_s, v_smem_s, p_tmem_s): warp_idx = cute.arch.make_warp_uniform(cute.arch.warp_idx()) tidx, _, _ = cute.arch.thread_idx() use_2cta = cute.size(qk_mma.thr_id.shape) == 2 if warp_idx == self.tma_warp_id: cpasync.prefetch_descriptor(tma_q); cpasync.prefetch_descriptor(tma_k) cpasync.prefetch_descriptor(tma_v) @cute.struct class SS: ab_bar: cute.struct.MemRange[cutlass.Int64, self.num_ab_stage * 2] mma_si_bar: cute.struct.MemRange[cutlass.Int64, 2] tmem_dealloc: cutlass.Int64 holding: cutlass.Int32 smem = utils.SmemAllocator(); st = smem.allocate(SS) ab_p, ab_c = pipeline.PipelineTmaUmma.create( barrier_storage=st.ab_bar.data_ptr(), num_stages=self.num_ab_stage, producer_group=pipeline.CooperativeGroup(pipeline.Agent.Thread), consumer_group=pipeline.CooperativeGroup(pipeline.Agent.Thread, 1), tx_count=self.num_tma_load_bytes, cta_layout_vmnk=cl_vmnk, defer_sync=True ).make_participants() mma_si_prod, mma_si_cons = pipeline.PipelineUmmaAsync.create( barrier_storage=st.mma_si_bar.data_ptr(), num_stages=1, producer_group=pipeline.CooperativeGroup(pipeline.Agent.Thread), consumer_group=pipeline.CooperativeGroup(pipeline.Agent.Thread, 32 * len(self.epilogue_warp_id)), ).make_participants() tmem_bar = pipeline.NamedBarrier(barrier_id=self.tmem_alloc_sync_bar_id, num_threads=32 * len((self.mma_warp_id, *self.epilogue_warp_id))) tmem = utils.TmemAllocator(st.holding.ptr, barrier_for_retrieve=tmem_bar, allocator_warp_id=self.epilogue_warp_id[0], is_two_cta=use_2cta, two_cta_tmem_dealloc_mbar_ptr=st.tmem_dealloc.ptr) pipeline.pipeline_init_arrive(cluster_shape_mn=cl_vmnk, is_relaxed=True) sQ = smem.allocate_tensor(element_type=self.q_dtype, layout=a_smem_s.outer, byte_alignment=128, swizzle=a_smem_s.inner) sK = smem.allocate_tensor(element_type=self.b_dtype, layout=b_smem_s.outer, byte_alignment=128, swizzle=b_smem_s.inner) sV = smem.allocate_tensor(element_type=self.b_dtype, layout=v_smem_s.outer, byte_alignment=128, swizzle=v_smem_s.inner) gQ = cute.local_tile(mQ, cute.slice_(self.qk_mma_tiler, (None,0,None)), (None,None,None)) gK = cute.local_tile(mK, cute.slice_(self.qk_mma_tiler, (0,None,None)), (None,None,None)) k_cnt = cute.size(gQ, mode=[3]) qk_thr = qk_mma.get_slice(0) pv_thr = pv_mma.get_slice(0) tCgQ = qk_thr.partition_A(gQ); tCgK = qk_thr.partition_B(gK) a_lay = cute.make_layout(cute.slice_(cl_vmnk, (0,0,None,0)).shape) tAsQ, tAgQ = cpasync.tma_partition(tma_q, 0, a_lay, cute.group_modes(sQ,0,3), cute.group_modes(tCgQ,0,3)) b_lay = cute.make_layout(cute.slice_(cl_vmnk, (0,None,0,0)).shape) tBsK, tBgK = cpasync.tma_partition(tma_k, 0, b_lay, cute.group_modes(sK,0,3), cute.group_modes(tCgK,0,3)) tAgQ = tAgQ[(None,0,None,0)]; tBgK = tBgK[(None,0,None,0)] gV = cute.local_tile(mV, cute.slice_(self.pv_mma_tiler, (0,None,None)), (None,None,None)) tCgV = pv_thr.partition_B(gV) tVsV, tVgV = cpasync.tma_partition(tma_v, 0, b_lay, cute.group_modes(sV,0,3), cute.group_modes(tCgV,0,3)) tVgV = tVgV[(None,0,None,0)] tCrQ = qk_mma.make_fragment_A(sQ); tCrK = qk_mma.make_fragment_B(sK) tCrV = pv_mma.make_fragment_B(sV) qk_acc_shape = qk_thr.partition_shape_C(self.qk_mma_tiler[:2]) tStS = qk_thr.make_fragment_C(qk_acc_shape) tStS0 = cute.make_tensor(tStS.iterator + self.tmem_s0_offset, tStS.layout) pv_acc_shape = pv_thr.partition_shape_C(self.pv_mma_tiler[:2]) tOtO = pv_thr.make_fragment_C(pv_acc_shape) tOtO0 = cute.make_tensor(tOtO.iterator + self.tmem_o0_offset, tOtO.layout) tP = cute.make_tensor(tStS.iterator, p_tmem_s.outer) tOrP_base = pv_thr.make_fragment_A(tP) tOrP = tOrP_base[(None, None, None, 0)] tOrP0 = cute.make_tensor( tOrP.iterator + self.qk_acc_dtype.width // self.q_dtype.width * self.tmem_p0_offset, tOrP.layout) pipeline.pipeline_init_wait(cluster_shape_mn=cl_vmnk) # ===== TMA LOAD WARP ===== if warp_idx == self.tma_warp_id: ab_p.reset(); peek = ab_p.try_acquire() for kt in cutlass.range(k_cnt, unroll=1): h = ab_p.acquire_and_advance(peek) cute.copy(tma_q, tAgQ[(None,h.count)], tAsQ[(None,h.index)], tma_bar_ptr=h.barrier) cute.copy(tma_k, tBgK[(None,h.count)], tBsK[(None,h.index)], tma_bar_ptr=h.barrier) cute.copy(tma_v, tVgV[(None,h.count)], tVsV[(None,h.index)], tma_bar_ptr=h.barrier) peek = cutlass.Boolean(1) if h.count+1