Adjust EOF spaces and usused variable

This commit is contained in:
Akarshan Biswas 2025-02-02 19:09:23 +05:30
parent a6a239cf39
commit 6eb30d9403
No known key found for this signature in database
GPG key ID: 52A578A14B32134D
3 changed files with 2 additions and 2 deletions

View file

@ -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_DEBUG("call %s\n", __func__);
ggml_sycl_op_concat(ctx, dst); ggml_sycl_op_concat(ctx, dst);
GGML_SYCL_DEBUG("call %s done\n", __func__); GGML_SYCL_DEBUG("call %s done\n", __func__);
} }

View file

@ -97,4 +97,3 @@ void ggml_sycl_op_conv_transpose_1d(ggml_backend_sycl_context & ctx, ggml_tensor
src1->ne[0], dst->ne[0], src1->ne[0], dst->ne[0],
src0_d, src1_d, dst_d, stream); src0_d, src1_d, dst_d, stream);
} }

View file

@ -973,6 +973,7 @@ void ggml_sycl_op_dequantize_mul_mat_vec(
} }
#else #else
const dfloat * src1_dfloat = (const dfloat *) src1_ddf_i; // dfloat == float, no conversion const dfloat * src1_dfloat = (const dfloat *) src1_ddf_i; // dfloat == float, no conversion
GGML_UNUSED(ctx);
#endif // GGML_SYCL_F16 #endif // GGML_SYCL_F16
switch (src0->type) { switch (src0->type) {