From ff4ace5e488756fb796205c9dc26d860143ec1f9 Mon Sep 17 00:00:00 2001 From: Abhilash Majumder <30946547+abhilash1910@users.noreply.github.com> Date: Wed, 27 Mar 2024 12:36:57 +0530 Subject: [PATCH] disable to check perf --- ggml-sycl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ggml-sycl.cpp b/ggml-sycl.cpp index 99cc5ef86..7fbb9bebe 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;