]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
k-quants : fix indentation
authorGeorgi Gerganov <redacted>
Mon, 26 Jun 2023 17:10:52 +0000 (20:10 +0300)
committerGeorgi Gerganov <redacted>
Mon, 26 Jun 2023 17:10:52 +0000 (20:10 +0300)
k_quants.c

index 923467d7c0c2b4de5f39a01b18aaf624c5623593..c576fd7a7568ac042dd3432b139d81bd29bb15a2 100644 (file)
@@ -1981,7 +1981,8 @@ void ggml_vec_dot_q3_K_q8_K(const int n, float * restrict s, const void * restri
             const __m128i q3bits_1 = _mm_loadu_si128((const __m128i*)q3); q3 += 16;
 
             // 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_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);