ggml : fix assert using wrong QK4_2 instead of QK4_3
This commit is contained in:
parent
4ddb983a02
commit
e8c3731764
1 changed files with 1 additions and 1 deletions
2
ggml.c
2
ggml.c
|
@ -2942,7 +2942,7 @@ static void ggml_vec_dot_q4_3_q8_1(const int n, float * restrict s, const void *
|
|||
|
||||
assert(n % QK8_1 == 0);
|
||||
assert(nb % 2 == 0);
|
||||
assert(QK8_1 == 2*QK4_2);
|
||||
assert(QK8_1 == 2*QK4_3);
|
||||
|
||||
const block_q4_3 * restrict x = vx;
|
||||
const block_q8_1 * restrict y = vy;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue