From c810047b535b9ef0d16765fc1bd0d0af947ba606 Mon Sep 17 00:00:00 2001 From: abhilash1910 Date: Wed, 6 Mar 2024 03:06:25 -0800 Subject: [PATCH] enable ops --- ggml-sycl.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ggml-sycl.cpp b/ggml-sycl.cpp index 1291a4f12..b336b7fa9 100644 --- a/ggml-sycl.cpp +++ b/ggml-sycl.cpp @@ -17897,9 +17897,8 @@ GGML_CALL static bool ggml_backend_sycl_supports_op(ggml_backend_t backend, cons return false; } ggml_type a_type = a->type; - 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 (a_type == GGML_TYPE_IQ4_NL || a_type == GGML_TYPE_IQ2_S || + a_type == GGML_TYPE_IQ4_XS) { return false; } return true;