Make quantize_row_q4_1 static

Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
This commit is contained in:
slaren 2023-03-28 20:05:37 +02:00 committed by GitHub
parent 41669f67d8
commit 6ab328d88c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
ggml.c
View file

@ -729,7 +729,7 @@ static void quantize_row_q4_1_reference(const float * restrict x, void * restric
}
}
void quantize_row_q4_1(const float * restrict x, void * restrict vy, int k) {
static void quantize_row_q4_1(const float * restrict x, void * restrict vy, int k) {
assert(k % QK == 0);
#if defined(__AVX2__)