Skip to content

Commit f7d8241

Browse files
committed
chore: fix editorconfig violations
1 parent 991b824 commit f7d8241

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
@@ -164,9 +164,7 @@ void concat_impl_sycl(ggml_backend_sycl_context & ctx, ggml_tensor *dst) {
164164
const T * src1_d = (const T *) src1->data;
165165

166166
T * dst_d = (T *) dst->data;
167-
168-
size_t type_size = elem_size(dst->type);
169-
167+
size_t type_size = elem_size(dst->type);
170168
if (dim != 3) {
171169
for (int i3 = 0; i3 < dst->ne[3]; i3++) {
172170
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)