summaryrefslogtreecommitdiff
path: root/ggml/src/ggml.c
diff options
context:
space:
mode:
Diffstat (limited to 'ggml/src/ggml.c')
-rw-r--r--ggml/src/ggml.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ggml/src/ggml.c b/ggml/src/ggml.c
index a6260136..69b1b46d 100644
--- a/ggml/src/ggml.c
+++ b/ggml/src/ggml.c
@@ -1699,7 +1699,11 @@ static const ggml_type_traits_t type_traits[GGML_TYPE_COUNT] = {
.from_float = quantize_row_iq5_k,
.from_float_ref = (ggml_from_float_t)quantize_row_iq5_k_ref,
.vec_dot = vec_dot_iq5_k_q8_k,
+//#ifdef __AVX2__
+// .vec_dot_type = GGML_TYPE_Q8_2_X4,
+//#else
.vec_dot_type = GGML_TYPE_Q8_K,
+//#endif
.nrows = 1,
.row_meta_size = 0,
},