aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test-quantize.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-quantize.c b/tests/test-quantize.c
index d59ecb8..993e9dc 100644
--- a/tests/test-quantize.c
+++ b/tests/test-quantize.c
@@ -13,7 +13,7 @@ int main(void) {
src[i] = (float)(i + 1);
}
- size_t size = ggml_quantize_q4_0(src, dst, QK, QK, QK, hist);
+ size_t size = ggml_quantize_q4_0(src, dst, QK, QK, hist);
assert(size == 20);
float max_result = ((float *)dst)[0];
float max_expected = src[31] / ((1 << 3) - 1);
@@ -24,7 +24,7 @@ int main(void) {
assert(q4_result == q4_expected);
}
- size = ggml_quantize_q4_1(src, dst, QK, QK, QK, hist);
+ size = ggml_quantize_q4_1(src, dst, QK, QK, hist);
assert(size == 24);
float delta_result = ((float *)dst)[0];
float delta_expected = (src[31] - src[0]) / ((1 << 4) - 1);