From 32bf3df076f79cf4d69df4c2db140cb65f0cd343 Mon Sep 17 00:00:00 2001 From: Jianyu Zhang Date: Tue, 5 Mar 2024 11:25:34 +0800 Subject: [PATCH] fix format issue --- ggml-sycl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ggml-sycl.cpp b/ggml-sycl.cpp index f9278c78e..6fb7e987a 100644 --- a/ggml-sycl.cpp +++ b/ggml-sycl.cpp @@ -14000,8 +14000,8 @@ inline void ggml_sycl_op_dequantize_mul_mat_vec( src0->type == GGML_TYPE_Q8_0 || src0->type == GGML_TYPE_F16; if (src1_convert_f16) { - src1_dfloat = src1_dfloat_a.alloc(ne00); - const to_fp16_sycl_t to_fp16_sycl = ggml_get_to_fp16_sycl(src1->type); + src1_dfloat = src1_dfloat_a.alloc(ne00); + const to_fp16_sycl_t to_fp16_sycl = ggml_get_to_fp16_sycl(src1->type); GGML_ASSERT(to_fp16_sycl != nullptr); to_fp16_sycl(src1_ddf_i, src1_dfloat, ne00, stream); }