mirror of
https://github.com/ggerganov/llama.cpp
synced 2026-04-05 23:05:16 +02:00
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 commitdb9ae8b6b4. * Revert "enable mmf for rdna4" This reverts commit698c9f2418. * Revert "move some mmvf to mmf" This reverts commit99b92bd665. * enable mul_mat for rdna4 --------- Co-authored-by: zhang hui <you@example.com>
This commit is contained in:
parent
cd0e3a7a3b
commit
6bca76ff5e
@ -151,7 +151,7 @@ bool ggml_cuda_should_use_mmf(enum ggml_type type, int cc, int warp_size, const
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if (src1_ncols > 16 || GGML_CUDA_CC_IS_RDNA4(cc)) {
|
||||
if (src1_ncols > 16) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user