mirror of
https://github.com/ikawrakow/ik_llama.cpp.git
synced 2026-04-29 10:51:51 +00:00
Another fix
This commit is contained in:
@@ -3345,7 +3345,7 @@ static void mul_mat_q5_k_r4_q8_k_avx2(int n, const void * vx, size_t bx, const D
|
||||
template <int nrc_y>
|
||||
static void mul_mat_q5_k_r4_q8_k(int n, const void * vx, size_t bx, const DataInfo& info, int nrc_x) {
|
||||
if constexpr (nrc_y == 1){
|
||||
mul_mat_q4_k_r4_q8_k_avx2<1>(n, vx, bx, info, nrc_x);
|
||||
mul_mat_q5_k_r4_q8_k_avx2<1>(n, vx, bx, info, nrc_x);
|
||||
} else {
|
||||
GGML_ASSERT(nrc_x%8 == 0);
|
||||
Q8<nrc_y, block_q8_K> q8(info);
|
||||
|
||||
Reference in New Issue
Block a user