Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion python/tvm/dlight/gpu/gemv.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,10 @@ def apply(
TS, TR = 2, 64
elif target.kind.name == "rocm":
VEC_C = 4
LOAD_V_SHARED = True
# TODO: set LOAD_V_SHARED = False for now
# rocm might have some issues when load/store of shared do not belong to same data type
# and only works for certain vector lens, our commonly useful vector lens are in 4
LOAD_V_SHARED = False
LOAD_V_VEC = 8
UNROLL = 256
if isinstance(len_S, int):
Expand Down