Skip to content

Commit c88309b

Browse files
authored
Remove deprecation warning in 4.5 (Dao-AILab#139)
1 parent 5ee09c7 commit c88309b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

quack/gemm_sm100.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -968,11 +968,11 @@ def kernel(
968968
)
969969
# Tensor memory dealloc barrier init
970970
tmem = cutlass.utils.TmemAllocator(
971-
storage.tmem_holding_buf,
971+
storage.tmem_holding_buf.ptr,
972972
barrier_for_retrieve=tmem_alloc_barrier,
973973
allocator_warp_id=self.epilog_warp_id[0],
974974
is_two_cta=use_2cta_instrs,
975-
two_cta_tmem_dealloc_mbar_ptr=storage.tmem_dealloc_mbar_ptr,
975+
two_cta_tmem_dealloc_mbar_ptr=storage.tmem_dealloc_mbar_ptr.ptr,
976976
)
977977

978978
# Cluster arrive after barrier init

0 commit comments

Comments
 (0)