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 sycl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ include(SYCLUtils)
set(SYCL_MAJOR_VERSION 5)
set(SYCL_MINOR_VERSION 7)
set(SYCL_PATCH_VERSION 0)
set(SYCL_DEV_ABI_VERSION 0)
set(SYCL_DEV_ABI_VERSION 1)
if (SYCL_ADD_DEV_VERSION_POSTFIX)
set(SYCL_VERSION_POSTFIX "-${SYCL_DEV_ABI_VERSION}")
endif()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,13 +219,5 @@ online_compiler<source_language::cm>::compile(const std::string &src) {
} // namespace experimental
} // namespace intel
} // namespace ext

namespace ext {
namespace __SYCL2020_DEPRECATED(
"use 'ext::intel::experimental' instead") intel {
using namespace ext::intel::experimental;
} // namespace intel
} // namespace ext

} // namespace sycl
} // __SYCL_INLINE_NAMESPACE(cl)
4 changes: 0 additions & 4 deletions sycl/test/warnings/sycl_2020_deprecations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,6 @@ int main() {
auto SL = sycl::INTEL::source_language::opencl_c;
(void)SL;

// expected-warning@+1{{'intel' is deprecated: use 'ext::intel::experimental' instead}}
auto SLExtIntel = sycl::ext::intel::source_language::opencl_c;
(void)SLExtIntel;

// expected-warning@+1{{'level_zero' is deprecated: use 'ext_oneapi_level_zero' instead}}
auto LevelZeroBackend = sycl::backend::level_zero;
(void)LevelZeroBackend;
Expand Down