diff options
author | Stephan Walter <stephan@walter.name> | 2023-03-28 15:56:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 18:56:03 +0300 |
commit | c1f885067c61191a07a1aedf684168dda62f3f71 (patch) | |
tree | 2bcb3f068942e2f16a92d70fec4bd623ac17ce28 /ggml.h | |
parent | e0670260fb50a882b37074112b1881fb0820cf77 (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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |