Skip to content

Commit 071edb1

Browse files
author
iclsrc
committed
Merge from 'sycl' to 'sycl-web' (2 commits)
2 parents 825ef67 + 281b304 commit 071edb1

19 files changed

+28
-33
lines changed

devops/dependencies.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"linux": {
33
"compute_runtime": {
4-
"github_tag": "25.09.32961.7",
5-
"version": "25.09.32961.7",
6-
"url": "https://github.com/intel/compute-runtime/releases/tag/25.09.32961.7",
4+
"github_tag": "25.13.33276.19",
5+
"version": "25.13.33276.19",
6+
"url": "https://github.com/intel/compute-runtime/releases/tag/25.13.33276.19",
77
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
88
},
99
"igc": {
10-
"github_tag": "v2.8.3",
11-
"version": "v2.8.3",
12-
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/v2.8.3",
10+
"github_tag": "v2.10.10",
11+
"version": "v2.10.10",
12+
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/v2.10.10",
1313
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
1414
},
1515
"cm": {

devops/scripts/benchmarks/benches/gromacs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def setup(self):
7777
f"-DGMX_SYCL_ENABLE_EXPERIMENTAL_SUBMIT_API=ON",
7878
f"-DGMX_FFT_LIBRARY=MKL",
7979
f"-DGMX_GPU_FFT_LIBRARY=MKL",
80-
f"-DMKL_DIR={self.oneapi.mkl_cmake()}",
80+
f"-DMKLROOT={self.oneapi.mkl_dir()}",
8181
f"-DGMX_GPU_NB_CLUSTER_SIZE=8",
8282
f"-DGMX_GPU_NB_NUM_CLUSTER_PER_CELL_X=1",
8383
f"-DGMX_OPENMP=OFF",

devops/scripts/benchmarks/utils/oneapi.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ def package_cmake(self, package):
5555
package_lib = self.package_dir(package, "lib")
5656
return os.path.join(package_lib, "cmake", package)
5757

58+
def mkl_dir(self):
59+
return self.package_dir("mkl", "")
60+
5861
def mkl_lib(self):
5962
return self.package_dir("mkl", "lib")
6063

sycl/test-e2e/Adapters/level_zero/ext_intel_cslice.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// XFAIL: gpu-intel-pvc-1T
55
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/15699
66

7+
// XFAIL: linux && run-mode && (arch-intel_gpu_bmg_g21 || gpu-intel-dg2)
8+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/18576
9+
710
// RUN: %{build} -Wno-error=deprecated-declarations -o %t.out
811

912
// TODO: at this time PVC 1T systems are not correctly supporting CSLICE

sycl/test-e2e/Adapters/level_zero/ext_intel_queue_index.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// XFAIL: gpu-intel-pvc-1T
55
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/15699
66

7+
// XFAIL: linux && run-mode && (arch-intel_gpu_bmg_g21 || gpu-intel-dg2)
8+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/18576
9+
710
// RUN: %{build} -o %t.out
811

912
// TODO: at this time PVC 1T systems are not correctly supporting CSLICE

sycl/test-e2e/Adapters/sycl-ls-uuid-subdevs.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* devices. */
33
// REQUIRES: gpu, level_zero
44

5+
// XFAIL: linux && run-mode && (arch-intel_gpu_bmg_g21 || gpu-intel-dg2)
6+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/18576
7+
58
// As of now, ZEX_NUMBER_OF_CCS is not working with FLAT hierachy,
69
// which is the new default on PVC.
710

sycl/test-e2e/Graph/Explicit/add_nodes_after_finalize.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// Extra run to check for immediate-command-list in Level Zero
66
// RUN: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}
77

8-
// Test is flaky on Windows, disable until it can be fixed
9-
// UNSUPPORTED: windows
8+
// Test is flaky on Windows and Linux DG2, disable until it can be fixed
9+
// UNSUPPORTED: windows || gpu-intel-dg2
1010
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/11852
1111

1212
#define GRAPH_E2E_EXPLICIT

sycl/test-e2e/Graph/Explicit/buffer_ordering.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// XFAIL: run-mode && gpu-intel-dg2
2+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/18579
13
// RUN: %{build} -o %t.out
24
// RUN: %{run} %t.out
35
// Extra run to check for leaks in Level Zero using UR_L0_LEAKS_DEBUG

sycl/test-e2e/Graph/RecordReplay/buffer_ordering.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// XFAIL: run-mode && gpu-intel-dg2
2+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/18579
13
// RUN: %{build} -o %t.out
24
// RUN: %{run} %t.out
35
// Extra run to check for leaks in Level Zero using UR_L0_LEAKS_DEBUG

sycl/test-e2e/GroupAlgorithm/SYCL2020/group_sort/group_and_joint_sort.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// REQUIRES: sg-8
22
// UNSUPPORTED: target-nvidia || target-amd
33
// UNSUPPORTED-INTENDED: subgroup size requirement implicitly make nvptx/amdgcn
4+
// XFAIL: linux && run-mode && (gpu-intel-gen12 || gpu-intel-dg2)
5+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/18577
46
// not supported
57

68
// RUN: %{build} -fsycl-device-code-split=per_kernel -o %t.out

0 commit comments

Comments
 (0)