Skip to content

Commit b732770

Browse files
committed
cleanup: drop unnecessary i16 type support
1 parent c8900ad commit b732770

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

ggml/src/ggml-sycl/concat.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,6 @@ void ggml_sycl_op_concat(ggml_backend_sycl_context & ctx, ggml_tensor *dst) {
193193
case GGML_TYPE_F32:
194194
concat_impl_sycl<float>(ctx, dst);
195195
break;
196-
case GGML_TYPE_I16:
197-
concat_impl_sycl<int16_t>(ctx, dst);
198-
break;
199196
case GGML_TYPE_I32:
200197
concat_impl_sycl<int32_t>(ctx, dst);
201198
break;

tests/test-backend-ops.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6859,7 +6859,6 @@ 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));
68636862
}
68646863
}
68656864

0 commit comments

Comments
 (0)