Skip to content

Commit bff9eb8

Browse files
committed
rm comment
1 parent 4db8e86 commit bff9eb8

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
@@ -15697,12 +15697,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
1569715697
{
1569815698
sycl::range<3> block_dims(1, 1, std::min((unsigned int)ne10, 768u));
1569915699
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-
*/
1570615700
stream->submit([&](sycl::handler &cgh) {
1570715701
sycl::local_accessor<int, 0> src1_row_acc_ct1(cgh);
1570815702

@@ -15726,17 +15720,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
1572615720
item_ct1, src1_row_acc_ct1);
1572715721
});
1572815722
});
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);
1574015723
}
1574115724

1574215725
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,
1575915742
{
1576015743
sycl::range<3> block_dims(1, 1, std::min((unsigned int)ne0, 768u));
1576115744
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-
*/
1576815745
stream->submit([&](sycl::handler &cgh) {
1576915746
const char *__restrict dst_contiguous_get_ct1 =
1577015747
dst_contiguous.get();
@@ -15780,17 +15757,6 @@ static void ggml_sycl_mul_mat_id(const ggml_tensor *src0,
1578015757
ne0, nb1, nb2, item_ct1);
1578115758
});
1578215759
});
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);
1579415760
}
1579515761
}
1579615762
if (dst->backend == GGML_BACKEND_TYPE_CPU) {

0 commit comments

Comments
 (0)