summaryrefslogtreecommitdiff
path: root/ggml.c
diff options
context:
space:
mode:
authorIwan Kawrakow <iwan.kawrakow@gmail.com>2024-07-17 08:44:46 +0200
committerIwan Kawrakow <iwan.kawrakow@gmail.com>2024-07-17 08:44:46 +0200
commitba00f23ea18fba5a6e8107a784c2b1db618d5caf (patch)
tree1917b9696711bb8411e83a68218c0e115920a260 /ggml.c
parent873a790ee22538d1d9d7205db7210c70955ab1e1 (diff)
iq1bn: adjust scalar dot product and some cleanup
Diffstat (limited to 'ggml.c')
-rw-r--r--ggml.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ggml.c b/ggml.c
index e65b3c19..a15d41ad 100644
--- a/ggml.c
+++ b/ggml.c
@@ -21119,8 +21119,6 @@ void ggml_quantize_init(enum ggml_type type) {
case GGML_TYPE_IQ1_M: iq2xs_init_impl(type); break;
case GGML_TYPE_IQ3_XXS: iq3xs_init_impl(256); break;
case GGML_TYPE_IQ3_S: iq3xs_init_impl(512); break;
- case GGML_TYPE_IQ2_BN:
- case GGML_TYPE_IQ1_BN: iq1bn_init_impl(); break;
default: // nothing
break;
}