Skip to content

Commit 9399294

Browse files
Merge pull request #980 from IntelPython/fix-fallout-of-recent-changes
Fix fallout of recent changes
2 parents 70ec4d7 + 3ff3fb7 commit 9399294

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
recursive-include dpctl/include *.h
2+
recursive-include dpctl/include *.hpp
23
include dpctl/include/dpctl4pybind11.hpp
34
recursive-include dpctl *.pxd
45
recursive-include dpctl *.cmake

libsyclinterface/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ endif()
251251
# Install all headers
252252

253253
file(GLOB MAIN_HEADERS "${CMAKE_CURRENT_SOURCE_DIR}/include/*.h")
254+
file(GLOB MAIN_HEADERS "${CMAKE_CURRENT_SOURCE_DIR}/include/*.hpp")
254255
file(GLOB SUPPORT_HEADERS "${CMAKE_CURRENT_SOURCE_DIR}/include/Support/*.h")
255256
file(GLOB CONFIG_HEADERS "${CMAKE_CURRENT_SOURCE_DIR}/include/Config/*.h")
256257

libsyclinterface/include/Config/dpctl_config.h.in

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@
3030
@DPCTL_ENABLE_L0_PROGRAM_CREATION@
3131

3232
/* Version of SYCL DPC++ 2023 compiler at which transition to SYCL 2020 occurs */
33-
#define __SYCL_COMPILER_2023_SWITCHOVER 20221020L
33+
/* Intel(R) oneAPI DPC++ 2022.2.1 compiler has version 20221020L */
34+
#define __SYCL_COMPILER_2023_SWITCHOVER 20221021L
3435

3536
/* Version of SYCL DPC++ compiler at which info::max_work_item_size was
3637
made templated */
37-
#define __SYCL_COMPILER_MAX_WORK_ITEM_SIZE_THRESHOLD 20220805L
38+
#define __SYCL_COMPILER_MAX_WORK_ITEM_SIZE_THRESHOLD __SYCL_COMPILER_2023_SWITCHOVER
3839

3940
/* The DPCPP version used to build dpctl */
4041
#define DPCTL_DPCPP_VERSION "@IntelSycl_VERSION@"

0 commit comments

Comments
 (0)