mirror of
https://github.com/ikawrakow/ik_llama.cpp.git
synced 2026-02-25 07:34:10 +00:00
Fix typo
This commit is contained in:
@@ -11387,15 +11387,13 @@ static void mul_mat_qX_1_q8_1(int n, const void * vx, size_t bx, const DataInfo&
|
||||
Dequantizer deq1(vx, bx), deq2(vx, bx);
|
||||
mul_mat_qX_Y_q8_Y_1(n, deq1, deq2, q8, info, nrc_x);
|
||||
} else {
|
||||
if (nrc_x%2 == 0 && n/128 == 0) {
|
||||
if (nrc_x%2 == 0 && n%128 == 0) {
|
||||
Dequantizer deq1(vx, bx), deq2(vx, bx);
|
||||
mul_mat_qX_Y_q8_Y_IK(n, deq1, deq2, q8, info, nrc_x);
|
||||
} else {
|
||||
Dequantizer deq(vx, bx);
|
||||
mul_mat_qX_Y_q8_Y(n, deq, q8, info, nrc_x);
|
||||
}
|
||||
//Dequantizer deq(vx, bx);
|
||||
//mul_mat_qX_Y_q8_Y(n, deq, q8, info, nrc_x);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user