Skip to content

Commit 972f79f

Browse files
committed
chore: fix editorconfig violations
1 parent c57a307 commit 972f79f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

ggml/src/ggml-sycl/concat.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,7 @@ void concat_impl_sycl(ggml_backend_sycl_context & ctx, ggml_tensor *dst) {
168168
const T * src1_d = (const T *) src1->data;
169169

170170
T * dst_d = (T *) dst->data;
171-
172-
size_t type_size = elem_size(dst->type);
173-
171+
size_t type_size = elem_size(dst->type);
174172
if (dim != 3) {
175173
for (int i3 = 0; i3 < dst->ne[3]; i3++) {
176174
concat_T_sycl<T>(src0_d + i3 * (src0->nb[3] / type_size), src1_d + i3 * (src1->nb[3] / type_size),

tests/test-backend-ops.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6859,7 +6859,7 @@ static std::vector<std::unique_ptr<test_case>> make_test_cases_eval() {
68596859
for (int dim : { 0, 1, 2, 3, }) {
68606860
test_cases.emplace_back(new test_concat(GGML_TYPE_F32, {11, 12, 13, 14}, 7, dim, v));
68616861
test_cases.emplace_back(new test_concat(GGML_TYPE_I32, {11, 12, 13, 14}, 7, dim, v));
6862-
test_cases.emplace_back(new test_concat(GGML_TYPE_I16, {11, 12, 13, 14}, 7, dim, v));
6862+
test_cases.emplace_back(new test_concat(GGML_TYPE_I16, {11, 12, 13, 14}, 7, dim, v));
68636863
}
68646864
}
68656865

0 commit comments

Comments
 (0)