From 19dc47c064ce8b14bfd58e631cf3a73fe0d40d33 Mon Sep 17 00:00:00 2001 From: "Meng, Hengyu" Date: Tue, 28 May 2024 06:41:11 +0800 Subject: [PATCH] remove useless use_xmx --- ggml-sycl.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ggml-sycl.cpp b/ggml-sycl.cpp index 47dbfcde3..605c7f3c4 100644 --- a/ggml-sycl.cpp +++ b/ggml-sycl.cpp @@ -15227,12 +15227,6 @@ static void ggml_sycl_mul_mat(const ggml_tensor * src0, const ggml_tensor * src1 } } -#ifdef SYCL_USE_XMX - bool use_xmx = true; -#else - bool use_xmx = false; -#endif - // check data types and tensor shapes for custom matrix multiplication kernels: bool use_dequantize_mul_mat_vec = (ggml_is_quantized(src0->type) || src0->type == GGML_TYPE_F16) && src1->type == GGML_TYPE_F32 && dst->type == GGML_TYPE_F32