@@ -16141,12 +16141,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
16141
16141
{
16142
16142
sycl::range<3> block_dims(1, 1, std::min((unsigned int)ne10, 768u));
16143
16143
sycl::range<3> grid_dims(1, n_ids, ids->ne[1]);
16144
- /*
16145
- DPCT1049:81: The work-group size passed to the SYCL kernel may
16146
- exceed the limit. To get the device limit, query
16147
- info::device::max_work_group_size. Adjust the work-group size if
16148
- needed.
16149
- */
16150
16144
stream->submit([&](sycl::handler &cgh) {
16151
16145
sycl::local_accessor<int, 0> src1_row_acc_ct1(cgh);
16152
16146
@@ -16170,17 +16164,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
16170
16164
item_ct1, src1_row_acc_ct1);
16171
16165
});
16172
16166
});
16173
- /*
16174
- DPCT1010:196: SYCL uses exceptions to report errors and does not
16175
- use the error codes. The call was replaced with 0. You need to
16176
- rewrite this code.
16177
- */
16178
- /*
16179
- DPCT1009:197: SYCL uses exceptions to report errors and does not
16180
- use the error codes. The call was replaced by a placeholder
16181
- string. You need to rewrite this code.
16182
- */
16183
- SYCL_CHECK(0);
16184
16167
}
16185
16168
16186
16169
src0_row_extra.data_device[g_main_device] = src0_original + i02*nb02;
@@ -16203,12 +16186,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
16203
16186
{
16204
16187
sycl::range<3> block_dims(1, 1, std::min((unsigned int)ne0, 768u));
16205
16188
sycl::range<3> grid_dims(1, 1, num_src1_rows);
16206
- /*
16207
- DPCT1049:82: The work-group size passed to the SYCL kernel may
16208
- exceed the limit. To get the device limit, query
16209
- info::device::max_work_group_size. Adjust the work-group size if
16210
- needed.
16211
- */
16212
16189
stream->submit([&](sycl::handler &cgh) {
16213
16190
const char *__restrict dst_contiguous_get_ct1 =
16214
16191
dst_contiguous.get();
@@ -16224,17 +16201,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
16224
16201
ne0, nb1, nb2, item_ct1);
16225
16202
});
16226
16203
});
16227
- /*
16228
- DPCT1010:198: SYCL uses exceptions to report errors and does not
16229
- use the error codes. The call was replaced with 0. You need to
16230
- rewrite this code.
16231
- */
16232
- /*
16233
- DPCT1009:199: SYCL uses exceptions to report errors and does not
16234
- use the error codes. The call was replaced by a placeholder
16235
- string. You need to rewrite this code.
16236
- */
16237
- SYCL_CHECK(0);
16238
16204
}
16239
16205
}
16240
16206
if (dst->backend == GGML_BACKEND_TYPE_CPU) {
0 commit comments