Skip to content

Fix fallout of recent changes #980

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 8, 2022
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
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
recursive-include dpctl/include *.h
recursive-include dpctl/include *.hpp
include dpctl/include/dpctl4pybind11.hpp
recursive-include dpctl *.pxd
recursive-include dpctl *.cmake
Expand Down
1 change: 1 addition & 0 deletions libsyclinterface/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ endif()
# Install all headers

file(GLOB MAIN_HEADERS "${CMAKE_CURRENT_SOURCE_DIR}/include/*.h")
file(GLOB MAIN_HEADERS "${CMAKE_CURRENT_SOURCE_DIR}/include/*.hpp")
file(GLOB SUPPORT_HEADERS "${CMAKE_CURRENT_SOURCE_DIR}/include/Support/*.h")
file(GLOB CONFIG_HEADERS "${CMAKE_CURRENT_SOURCE_DIR}/include/Config/*.h")

Expand Down
5 changes: 3 additions & 2 deletions libsyclinterface/include/Config/dpctl_config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@
@DPCTL_ENABLE_L0_PROGRAM_CREATION@

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

/* Version of SYCL DPC++ compiler at which info::max_work_item_size was
made templated */
#define __SYCL_COMPILER_MAX_WORK_ITEM_SIZE_THRESHOLD 20220805L
#define __SYCL_COMPILER_MAX_WORK_ITEM_SIZE_THRESHOLD __SYCL_COMPILER_2023_SWITCHOVER

/* The DPCPP version used to build dpctl */
#define DPCTL_DPCPP_VERSION "@IntelSycl_VERSION@"
Expand Down