@@ -15697,12 +15697,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
15697
15697
{
15698
15698
sycl::range<3> block_dims(1, 1, std::min((unsigned int)ne10, 768u));
15699
15699
sycl::range<3> grid_dims(1, n_ids, ids->ne[1]);
15700
- /*
15701
- DPCT1049:81: The work-group size passed to the SYCL kernel may
15702
- exceed the limit. To get the device limit, query
15703
- info::device::max_work_group_size. Adjust the work-group size if
15704
- needed.
15705
- */
15706
15700
stream->submit([&](sycl::handler &cgh) {
15707
15701
sycl::local_accessor<int, 0> src1_row_acc_ct1(cgh);
15708
15702
@@ -15726,17 +15720,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
15726
15720
item_ct1, src1_row_acc_ct1);
15727
15721
});
15728
15722
});
15729
- /*
15730
- DPCT1010:196: SYCL uses exceptions to report errors and does not
15731
- use the error codes. The call was replaced with 0. You need to
15732
- rewrite this code.
15733
- */
15734
- /*
15735
- DPCT1009:197: SYCL uses exceptions to report errors and does not
15736
- use the error codes. The call was replaced by a placeholder
15737
- string. You need to rewrite this code.
15738
- */
15739
- SYCL_CHECK(0);
15740
15723
}
15741
15724
15742
15725
src0_row_extra.data_device[g_main_device] = src0_original + i02*nb02;
@@ -15759,12 +15742,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
15759
15742
{
15760
15743
sycl::range<3> block_dims(1, 1, std::min((unsigned int)ne0, 768u));
15761
15744
sycl::range<3> grid_dims(1, 1, num_src1_rows);
15762
- /*
15763
- DPCT1049:82: The work-group size passed to the SYCL kernel may
15764
- exceed the limit. To get the device limit, query
15765
- info::device::max_work_group_size. Adjust the work-group size if
15766
- needed.
15767
- */
15768
15745
stream->submit([&](sycl::handler &cgh) {
15769
15746
const char *__restrict dst_contiguous_get_ct1 =
15770
15747
dst_contiguous.get();
@@ -15780,17 +15757,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
15780
15757
ne0, nb1, nb2, item_ct1);
15781
15758
});
15782
15759
});
15783
- /*
15784
- DPCT1010:198: SYCL uses exceptions to report errors and does not
15785
- use the error codes. The call was replaced with 0. You need to
15786
- rewrite this code.
15787
- */
15788
- /*
15789
- DPCT1009:199: SYCL uses exceptions to report errors and does not
15790
- use the error codes. The call was replaced by a placeholder
15791
- string. You need to rewrite this code.
15792
- */
15793
- SYCL_CHECK(0);
15794
15760
}
15795
15761
}
15796
15762
if (dst->backend == GGML_BACKEND_TYPE_CPU) {
0 commit comments