diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 64b7bb110c..83a2818ed0 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,4 +1,4 @@ -{% set required_compiler_version = "2024.2.0" %} +{% set required_compiler_version = "2026.0.0" %} {% set pyproject = load_file_data('pyproject.toml') %} {% set py_build_deps = pyproject.get('build-system', {}).get('requires', []) %} diff --git a/docs/doc_sources/contributor_guides/building.rst b/docs/doc_sources/contributor_guides/building.rst index df2a8c35b2..d75c1d90dc 100644 --- a/docs/doc_sources/contributor_guides/building.rst +++ b/docs/doc_sources/contributor_guides/building.rst @@ -211,7 +211,7 @@ library. INSTALL_PREFIX=$(pwd)/../install rm -rf "${INSTALL_PREFIX}" export ONEAPI_ROOT=/opt/intel/oneapi - # Values are set as appropriate for oneAPI DPC++ 2024.0 + # Values are set as appropriate for oneAPI DPC++ 2026.0 # or later. DPCPP_ROOT=${ONEAPI_ROOT}/compiler/latest/ diff --git a/libsyclinterface/CMakeLists.txt b/libsyclinterface/CMakeLists.txt index 10ee68675f..34593a3f6b 100644 --- a/libsyclinterface/CMakeLists.txt +++ b/libsyclinterface/CMakeLists.txt @@ -50,7 +50,7 @@ set(LIBZE_DEFAULT_LOADER_FILENAME "libze_loader.so.1" CACHE STRING "Default Leve # Minimum version requirement only when oneAPI dpcpp is used. if(DPCTL_DPCPP_FROM_ONEAPI) - find_package(IntelSyclCompiler 2021.3.0 REQUIRED) + find_package(IntelSyclCompiler 2026.0.0 REQUIRED) else() find_package(IntelSyclCompiler REQUIRED) endif() diff --git a/libsyclinterface/include/syclinterface/Config/dpctl_config.h.in b/libsyclinterface/include/syclinterface/Config/dpctl_config.h.in index 97e28d1219..9964c8705c 100644 --- a/libsyclinterface/include/syclinterface/Config/dpctl_config.h.in +++ b/libsyclinterface/include/syclinterface/Config/dpctl_config.h.in @@ -28,7 +28,7 @@ /* Defined when dpctl was built with level zero program creation enabled. */ #cmakedefine DPCTL_ENABLE_L0_PROGRAM_CREATION 1 -#define __SYCL_COMPILER_VERSION_REQUIRED 20221201L +#define __SYCL_COMPILER_VERSION_REQUIRED 20260331 /* The DPCPP version used to build dpctl */ #define DPCTL_DPCPP_VERSION "@IntelSyclCompiler_VERSION@"