Skip to content

Commit 874af05

Browse files
aubreyliarthw
authored andcommitted
SYCL: Delete redundant plus sign and space (ggml-org#12391)
1 parent 822a6d3 commit 874af05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml-sycl/ggml-sycl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2948,8 +2948,8 @@ static void ggml_sycl_mul_mat_id(ggml_backend_sycl_context & ctx,
29482948
const int64_t i2 = i12;
29492949

29502950
src0_row.data = src0_original + i02*nb02;
2951-
src1_row.data = src1_original + + i11*nb11 + i12*nb12;
2952-
dst_row.data = dst_original + i1*nb1 + i2*nb2;
2951+
src1_row.data = src1_original + i11*nb11 + i12*nb12;
2952+
dst_row.data = dst_original + i1*nb1 + i2*nb2;
29532953

29542954
ggml_sycl_mul_mat(ctx, &src0_row, &src1_row, &dst_row);
29552955
}

0 commit comments

Comments
 (0)