From 19772fab9c3a2d26b2f3bd077378910e6e47e466 Mon Sep 17 00:00:00 2001 From: abhilash1910 Date: Tue, 26 Mar 2024 20:36:02 -0700 Subject: [PATCH] add condition for iq2s --- ggml-sycl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml-sycl.cpp b/ggml-sycl.cpp index 061f99b27..0cfcd4e6b 100644 --- a/ggml-sycl.cpp +++ b/ggml-sycl.cpp @@ -15382,7 +15382,7 @@ static void ggml_sycl_mul_mat(const ggml_tensor * src0, const ggml_tensor * src1 // KQ + KQV multi-batch // GGML_SYCL_DEBUG("ggml_sycl_mul_mat_batched_sycl\n"); ggml_sycl_mul_mat_batched_sycl(src0, src1, dst); - }else if (src0->type == GGML_TYPE_F32) { + } else if (src0->type == GGML_TYPE_F32) { // GGML_SYCL_DEBUG("ggml_sycl_op_mul_mat\n"); ggml_sycl_op_mul_mat(src0, src1, dst, ggml_sycl_op_mul_mat_sycl, false); } else if (ggml_is_quantized(src0->type) || src0->type == GGML_TYPE_F16) {