diff options
author | Iwan Kawrakow <iwan.kawrakow@gmail.com> | 2024-07-28 19:43:18 +0300 |
---|---|---|
committer | Kawrakow <48489457+ikawrakow@users.noreply.github.com> | 2024-08-01 09:38:06 +0200 |
commit | c85e139c68b0b0b15656cc0bc9618d632ed18822 (patch) | |
tree | f07e1f8c59522d286301c45de78d52ba48353ac4 /ggml/src/ggml-quants.c | |
parent | 291066e6df5318c322a03e592483aae8820d3b19 (diff) |
iq2_k: Basics
Quantize/dequantize, CUDA deqantize, AVX512 iqk_mul_mat.
Diffstat (limited to 'ggml/src/ggml-quants.c')
-rw-r--r-- | ggml/src/ggml-quants.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ggml/src/ggml-quants.c b/ggml/src/ggml-quants.c index fef124c3..a5dbff12 100644 --- a/ggml/src/ggml-quants.c +++ b/ggml/src/ggml-quants.c @@ -14947,6 +14947,7 @@ bool ggml_validate_row_data(enum ggml_type type, const void * data, size_t nbyte { VALIDATE_ROW_DATA_D_F16_IMPL(block_iq4_nl, data, nb); } break; + case GGML_TYPE_IQ2_K: break; case GGML_TYPE_IQ4_K: break; case GGML_TYPE_Q4_0_4_4: case GGML_TYPE_Q4_0_4_8: |