Skip to content

Commit 6bca76f

Browse files
zhang-hui-yulozhang hui
andauthored
HIP: enable mul_mat_f for RDNA4 (#17437)
* enable mmf for rdna4 * move some mmvf to mmf * revert lds128 for wmma loading * Revert "revert lds128 for wmma loading" This reverts commit db9ae8b. * Revert "enable mmf for rdna4" This reverts commit 698c9f2. * Revert "move some mmvf to mmf" This reverts commit 99b92bd. * enable mul_mat for rdna4 --------- Co-authored-by: zhang hui <[email protected]>
1 parent cd0e3a7 commit 6bca76f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-cuda/mmf.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ bool ggml_cuda_should_use_mmf(enum ggml_type type, int cc, int warp_size, const
151151
return false;
152152
}
153153
} else {
154-
if (src1_ncols > 16 || GGML_CUDA_CC_IS_RDNA4(cc)) {
154+
if (src1_ncols > 16) {
155155
return false;
156156
}
157157
}

0 commit comments

Comments
 (0)