summaryrefslogtreecommitdiff
path: root/ggml-quants.h
diff options
context:
space:
mode:
Diffstat (limited to 'ggml-quants.h')
-rw-r--r--ggml-quants.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ggml-quants.h b/ggml-quants.h
index 47dd5285..74aabf41 100644
--- a/ggml-quants.h
+++ b/ggml-quants.h
@@ -217,8 +217,8 @@ static_assert(sizeof(block_iq3_s) == sizeof(ggml_fp16_t) + 13*(QK_K/32) + IQ3S_N
typedef struct {
ggml_fp16_t d;
- uint8_t qs[QK_K/8];
- uint8_t scales[QK_K/16];
+ uint8_t qs[QK_K/8];
+ uint16_t qh[QK_K/32];
} block_iq1_s;
static_assert(sizeof(block_iq1_s) == sizeof(ggml_fp16_t) + QK_K/8 + QK_K/16, "wrong iq1_s block size/padding");