From 4e6df37d12911c6db50c1215c2e4ca5fd9296509 Mon Sep 17 00:00:00 2001 From: Abhilash Majumder <30946547+abhilash1910@users.noreply.github.com> Date: Wed, 27 Mar 2024 13:48:40 +0530 Subject: [PATCH] enable with rebase --- ggml-sycl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ggml-sycl.cpp b/ggml-sycl.cpp index d66b7b89a..cf38c2821 100644 --- a/ggml-sycl.cpp +++ b/ggml-sycl.cpp @@ -17267,9 +17267,9 @@ GGML_CALL static bool ggml_backend_sycl_supports_op(ggml_backend_t backend, cons if (a_type == GGML_TYPE_IQ2_XXS || a_type == GGML_TYPE_IQ2_XS || a_type == GGML_TYPE_IQ3_XXS || a_type == GGML_TYPE_IQ1_S || a_type == GGML_TYPE_IQ4_NL || a_type == GGML_TYPE_IQ3_S || a_type == GGML_TYPE_IQ2_S || a_type == GGML_TYPE_IQ4_XS) { - //if (b->ne[1] == 1 && ggml_nrows(b) > 1) { + if (b->ne[1] == 1 && ggml_nrows(b) > 1) { return false; - //} + } } return true; } break;