Skip to content

Commit eff2ff2

Browse files
authored
[SYCL][Joint Matrix] Add missing arch with matrix support to matrix aspect (#15932)
Recently added devices `architecture::intel_gpu_bmg_g21, architecture::intel_gpu_lnl_m, and architecture::intel_gpu_arl_h` have matrix support. This patch updates the aspect `aspect::ext_intel_matrix` so things like `sycl-ls --verbose` and kernel query show this support when used on these new devices.
1 parent c28f4ba commit eff2ff2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sycl/source/detail/device_impl.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,9 @@ bool device_impl::has(aspect Aspect) const {
675675
const std::vector<arch> supported_archs = {
676676
arch::intel_cpu_spr, arch::intel_cpu_gnr,
677677
arch::intel_gpu_pvc, arch::intel_gpu_dg2_g10,
678-
arch::intel_gpu_dg2_g11, arch::intel_gpu_dg2_g12};
678+
arch::intel_gpu_dg2_g11, arch::intel_gpu_dg2_g12,
679+
arch::intel_gpu_bmg_g21, arch::intel_gpu_lnl_m,
680+
arch::intel_gpu_arl_h};
679681
try {
680682
return std::any_of(
681683
supported_archs.begin(), supported_archs.end(),

0 commit comments

Comments
 (0)