Skip to content

Commit a476375

Browse files
authored
[SYCL] Add support for WCL for matrix aspect (#20794)
1 parent 4561a40 commit a476375

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sycl/source/detail/device_impl.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1480,7 +1480,7 @@ class device_impl : public std::enable_shared_from_this<device_impl> {
14801480
arch::intel_gpu_dg2_g12, arch::intel_gpu_bmg_g21,
14811481
arch::intel_gpu_bmg_g31, arch::intel_gpu_lnl_m,
14821482
arch::intel_gpu_arl_h, arch::intel_gpu_ptl_h,
1483-
arch::intel_gpu_ptl_u,
1483+
arch::intel_gpu_ptl_u, arch::intel_gpu_wcl,
14841484
};
14851485
try {
14861486
return std::any_of(
@@ -2031,7 +2031,8 @@ class device_impl : public std::enable_shared_from_this<device_impl> {
20312031
(architecture::intel_gpu_bmg_g31 == DeviceArch) ||
20322032
(architecture::intel_gpu_lnl_m == DeviceArch) ||
20332033
(architecture::intel_gpu_ptl_h == DeviceArch) ||
2034-
(architecture::intel_gpu_ptl_u == DeviceArch)) {
2034+
(architecture::intel_gpu_ptl_u == DeviceArch) ||
2035+
(architecture::intel_gpu_wcl == DeviceArch)) {
20352036
std::vector<ext::oneapi::experimental::matrix::combination> pvc_combs = {
20362037
{8, 0, 0, 0, 16, 32, matrix_type::uint8, matrix_type::uint8,
20372038
matrix_type::sint32, matrix_type::sint32},

0 commit comments

Comments
 (0)