Skip to content

Commit 9225bae

Browse files
committed
k-quants : fix indentation
1 parent a84ab1d commit 9225bae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

k_quants.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1981,7 +1981,8 @@ void ggml_vec_dot_q3_K_q8_K(const int n, float * restrict s, const void * restri
19811981
const __m128i q3bits_1 = _mm_loadu_si128((const __m128i*)q3); q3 += 16;
19821982

19831983
// prepare low and high bits
1984-
const int bit = j << 2;
1984+
const int bit = j << 2;
1985+
19851986
const __m128i q3l_0 = _mm_and_si128(q3bits_0, m3);
19861987
const __m128i q3l_1 = _mm_and_si128(q3bits_1, m3);
19871988
const __m128i q3h_0 = _mm_slli_epi16(_mm_srli_epi16(_mm_andnot_si128(hbits_0, _mm_slli_epi16(mone, bit)), bit), 2);

0 commit comments

Comments
 (0)