Skip to content

Commit 6733177

Browse files
committed
fix: drop whitespace
1 parent dafb20b commit 6733177

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ggml/src/ggml-sycl/concat.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,8 @@ void concat_impl_sycl(ggml_backend_sycl_context & ctx, ggml_tensor *dst) {
162162
if (ggml_is_contiguous(src0) && ggml_is_contiguous(src1)) {
163163
const T * src0_d = (const T *) src0->data;
164164
const T * src1_d = (const T *) src1->data;
165-
166165
T * dst_d = (T *) dst->data;
167-
size_t type_size = elem_size(dst->type);
166+
size_t type_size = elem_size(dst->type);
168167
if (dim != 3) {
169168
for (int i3 = 0; i3 < dst->ne[3]; i3++) {
170169
concat_T_sycl<T>(src0_d + i3 * (src0->nb[3] / type_size), src1_d + i3 * (src1->nb[3] / type_size),

0 commit comments

Comments
 (0)