Skip to content

Commit fbbd352

Browse files
committed
rm comment
1 parent 4e3db77 commit fbbd352

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

ggml-sycl.cpp

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -16141,12 +16141,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
1614116141
{
1614216142
sycl::range<3> block_dims(1, 1, std::min((unsigned int)ne10, 768u));
1614316143
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-
*/
1615016144
stream->submit([&](sycl::handler &cgh) {
1615116145
sycl::local_accessor<int, 0> src1_row_acc_ct1(cgh);
1615216146

@@ -16170,17 +16164,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
1617016164
item_ct1, src1_row_acc_ct1);
1617116165
});
1617216166
});
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);
1618416167
}
1618516168

1618616169
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,
1620316186
{
1620416187
sycl::range<3> block_dims(1, 1, std::min((unsigned int)ne0, 768u));
1620516188
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-
*/
1621216189
stream->submit([&](sycl::handler &cgh) {
1621316190
const char *__restrict dst_contiguous_get_ct1 =
1621416191
dst_contiguous.get();
@@ -16224,17 +16201,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
1622416201
ne0, nb1, nb2, item_ct1);
1622516202
});
1622616203
});
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);
1623816204
}
1623916205
}
1624016206
if (dst->backend == GGML_BACKEND_TYPE_CPU) {

0 commit comments

Comments
 (0)