Skip to content

Commit 6fa91e5

Browse files
committed
try fix ldmatrix b for int8
1 parent 7a962cd commit 6fa91e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/python/unittest/test_mma_16x8x32_int8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def ldmatrix_b_impl(a: T.handle, c: T.handle) -> None:
106106
B_warp.data,
107107
16 * tx,
108108
B_shared.data,
109-
16 * tx,
109+
32 * (tx % 16) + 8 * (tx // 16),
110110
dtype="int8",
111111
)
112112
)

0 commit comments

Comments
 (0)