Skip to content

Commit d81c830

Browse files
authored
Merge pull request #2360 from IntelPython/pin-compiler-minimum-to-2026
Pin compiler to minimum `2026.0.0`
2 parents c8ba5ee + 493b9db commit d81c830

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set required_compiler_version = "2024.2.0" %}
1+
{% set required_compiler_version = "2026.0.0" %}
22

33
{% set pyproject = load_file_data('pyproject.toml') %}
44
{% set py_build_deps = pyproject.get('build-system', {}).get('requires', []) %}

docs/doc_sources/contributor_guides/building.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ library.
235235
INSTALL_PREFIX=$(pwd)/../install
236236
rm -rf "${INSTALL_PREFIX}"
237237
export ONEAPI_ROOT=/opt/intel/oneapi
238-
# Values are set as appropriate for oneAPI DPC++ 2024.0
238+
# Values are set as appropriate for oneAPI DPC++ 2026.0
239239
# or later.
240240
DPCPP_ROOT=${ONEAPI_ROOT}/compiler/latest/
241241

libsyclinterface/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ set(LIBCL_DEFAULT_LOADER_FILENAME "libOpenCL.so.1" CACHE STRING "Default OpenCL
5454

5555
# Minimum version requirement only when oneAPI dpcpp is used.
5656
if(DPCTL_DPCPP_FROM_ONEAPI)
57-
find_package(IntelSyclCompiler 2021.3.0 REQUIRED)
57+
find_package(IntelSyclCompiler 2026.0.0 REQUIRED)
5858
else()
5959
find_package(IntelSyclCompiler REQUIRED)
6060
endif()

libsyclinterface/include/syclinterface/Config/dpctl_config.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/* Defined when dpctl was built with level zero program creation enabled. */
2929
#cmakedefine DPCTL_ENABLE_L0_PROGRAM_CREATION 1
3030

31-
#define __SYCL_COMPILER_VERSION_REQUIRED 20221201L
31+
#define __SYCL_COMPILER_VERSION_REQUIRED 20260331
3232

3333
/* The DPCPP version used to build dpctl */
3434
#define DPCTL_DPCPP_VERSION "@IntelSyclCompiler_VERSION@"

0 commit comments

Comments
 (0)