From 6eb30d9403b3988a29f5f732392af47e474058c6 Mon Sep 17 00:00:00 2001 From: Akarshan Biswas Date: Sun, 2 Feb 2025 19:09:23 +0530 Subject: [PATCH] Adjust EOF spaces and usused variable --- ggml/src/ggml-sycl/concat.cpp | 2 +- ggml/src/ggml-sycl/conv.cpp | 1 - ggml/src/ggml-sycl/dmmv.cpp | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ggml/src/ggml-sycl/concat.cpp b/ggml/src/ggml-sycl/concat.cpp index 6485df22d..e6fdd79b1 100644 --- a/ggml/src/ggml-sycl/concat.cpp +++ b/ggml/src/ggml-sycl/concat.cpp @@ -203,4 +203,4 @@ void ggml_sycl_concat(ggml_backend_sycl_context & ctx, ggml_tensor * dst) { GGML_SYCL_DEBUG("call %s\n", __func__); ggml_sycl_op_concat(ctx, dst); GGML_SYCL_DEBUG("call %s done\n", __func__); -} \ No newline at end of file +} diff --git a/ggml/src/ggml-sycl/conv.cpp b/ggml/src/ggml-sycl/conv.cpp index ddba601e1..bce7fdd79 100644 --- a/ggml/src/ggml-sycl/conv.cpp +++ b/ggml/src/ggml-sycl/conv.cpp @@ -97,4 +97,3 @@ void ggml_sycl_op_conv_transpose_1d(ggml_backend_sycl_context & ctx, ggml_tensor src1->ne[0], dst->ne[0], src0_d, src1_d, dst_d, stream); } - diff --git a/ggml/src/ggml-sycl/dmmv.cpp b/ggml/src/ggml-sycl/dmmv.cpp index 0d097357c..224854307 100644 --- a/ggml/src/ggml-sycl/dmmv.cpp +++ b/ggml/src/ggml-sycl/dmmv.cpp @@ -973,6 +973,7 @@ void ggml_sycl_op_dequantize_mul_mat_vec( } #else const dfloat * src1_dfloat = (const dfloat *) src1_ddf_i; // dfloat == float, no conversion + GGML_UNUSED(ctx); #endif // GGML_SYCL_F16 switch (src0->type) {