Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set required_compiler_version = "2024.2.0" %}
{% set required_compiler_version = "2026.0.0" %}
Comment thread
ndgrigorian marked this conversation as resolved.
Comment thread
ndgrigorian marked this conversation as resolved.

{% set pyproject = load_file_data('pyproject.toml') %}
{% set py_build_deps = pyproject.get('build-system', {}).get('requires', []) %}
Expand Down
2 changes: 1 addition & 1 deletion docs/doc_sources/contributor_guides/building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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/

Expand Down
2 changes: 1 addition & 1 deletion libsyclinterface/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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@"
Expand Down
Loading