From 32589a642fde0f3e94c80a133a4c9af758a20b00 Mon Sep 17 00:00:00 2001 From: Abhilash Majumder <30946547+abhilash1910@users.noreply.github.com> Date: Mon, 18 Mar 2024 22:25:19 +0530 Subject: [PATCH] supress assert --- ggml-sycl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml-sycl.cpp b/ggml-sycl.cpp index b8a336503..31b7b5354 100644 --- a/ggml-sycl.cpp +++ b/ggml-sycl.cpp @@ -14081,7 +14081,7 @@ inline void ggml_sycl_op_mul_mat_vec_q( const int64_t src1_ncols, const int64_t src1_padded_row_size, const dpct::queue_ptr &stream) { - GGML_ASSERT(ggml_nrows(src1) == 1); + //GGML_ASSERT(ggml_nrows(src1) == 1); const int64_t ne00 = src0->ne[0]; const int64_t row_diff = row_high - row_low;