summaryrefslogtreecommitdiff
path: root/ggml.h
diff options
context:
space:
mode:
authorStephan Walter <stephan@walter.name>2023-03-28 15:56:03 +0000
committerGitHub <noreply@github.com>2023-03-28 18:56:03 +0300
commitc1f885067c61191a07a1aedf684168dda62f3f71 (patch)
tree2bcb3f068942e2f16a92d70fec4bd623ac17ce28 /ggml.h
parente0670260fb50a882b37074112b1881fb0820cf77 (diff)
ggml : introduce structs for the q4 data blocks (#356)
* Introduce structs for the q4 data blocks * ggml : rename quant struct variables + fix ARM_NEON --------- Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
Diffstat (limited to 'ggml.h')
-rw-r--r--ggml.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ggml.h b/ggml.h
index ddb97318..335230f9 100644
--- a/ggml.h
+++ b/ggml.h
@@ -748,8 +748,8 @@ enum ggml_opt_result ggml_opt(
// quantization
//
-size_t ggml_quantize_q4_0(const float * src, void * dst, int n, int k, int qk, int64_t * hist);
-size_t ggml_quantize_q4_1(const float * src, void * dst, int n, int k, int qk, int64_t * hist);
+size_t ggml_quantize_q4_0(const float * src, void * dst, int n, int k, int64_t * hist);
+size_t ggml_quantize_q4_1(const float * src, void * dst, int n, int k, int64_t * hist);
//
// system info