-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Open
Labels
Description
The v4.1 update 2 (#2481 ) says "cutlass.cute.make_tiled_copy
is now deprecated. Please use cutlass.cute.make_tiled_copy_tv
instead".
Could make_tiled_copy
be kept?
make_tiled_copy_tv
takes in thr_layout
and val_layout
while make_tiled_copy
takes in tv_layout
, which means that make_tiled_copy_tv
is strictly less expressive than make_tiled_copy
. We construct manual tv_layout in the quack library (https://github.com/Dao-AILab/quack/blob/59631e98ed4562bba4bcaae8326d23b6e7094469/quack/reduction_base.py#L35), which I don't think can be written in terms of thr_layout
and val_layout
individually.
Chilleebrandon-yujie-sun