Skip to content

Commit db41529

Browse files
committed
fix merge
1 parent f8309dc commit db41529

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml-cpu/ggml-cpu-quants.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1682,7 +1682,7 @@ static const int8_t kvalues_iq4nl[16] = {-127, -104, -83, -65, -49, -35, -22, -1
16821682
// quantize_row_q8_K_ref(x, y, k);
16831683
// }
16841684

1685-
void quantize_row_q8_K(const float * restrict x, void * restrict y, int64_t k) {
1685+
/* void quantize_row_q8_K(const float * restrict x, void * restrict y, int64_t k) {
16861686
#ifdef __wasm_simd128__
16871687
assert(k % QK_K == 0);
16881688
const int64_t nb = k / QK_K;
@@ -1764,7 +1764,7 @@ void quantize_row_q8_K(const float * restrict x, void * restrict y, int64_t k) {
17641764
#else
17651765
quantize_row_q8_K_ref(x, y, k);
17661766
#endif
1767-
}
1767+
} */
17681768

17691769
//===================================== Dot products =================================
17701770

0 commit comments

Comments
 (0)