mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-09 23:29:44 +00:00
k-quants : fix indentation
This commit is contained in:
parent
a84ab1da8d
commit
9225baef71
1 changed files with 2 additions and 1 deletions
|
@ -1982,6 +1982,7 @@ void ggml_vec_dot_q3_K_q8_K(const int n, float * restrict s, const void * restri
|
||||||
|
|
||||||
// prepare low and high bits
|
// prepare low and high bits
|
||||||
const int bit = j << 2;
|
const int bit = j << 2;
|
||||||
|
|
||||||
const __m128i q3l_0 = _mm_and_si128(q3bits_0, m3);
|
const __m128i q3l_0 = _mm_and_si128(q3bits_0, m3);
|
||||||
const __m128i q3l_1 = _mm_and_si128(q3bits_1, m3);
|
const __m128i q3l_1 = _mm_and_si128(q3bits_1, m3);
|
||||||
const __m128i q3h_0 = _mm_slli_epi16(_mm_srli_epi16(_mm_andnot_si128(hbits_0, _mm_slli_epi16(mone, bit)), bit), 2);
|
const __m128i q3h_0 = _mm_slli_epi16(_mm_srli_epi16(_mm_andnot_si128(hbits_0, _mm_slli_epi16(mone, bit)), bit), 2);
|
||||||
|
|
Loading…
Reference in a new issue