From 2ddbda25078aad934c76498c55b3b4aab581eeaa Mon Sep 17 00:00:00 2001 From: Sergey Kanaev Date: Mon, 14 Sep 2020 13:40:13 +0300 Subject: [PATCH 1/2] [SYCL] Fixes in release notes Signed-off-by: Sergey Kanaev --- sycl/CMakeLists.txt | 4 ++-- sycl/ReleaseNotes.md | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sycl/CMakeLists.txt b/sycl/CMakeLists.txt index f1246e4aaecb..65bdca121eb8 100644 --- a/sycl/CMakeLists.txt +++ b/sycl/CMakeLists.txt @@ -12,8 +12,8 @@ option(SYCL_ADD_DEV_VERSION_POSTFIX "Adds -V postfix to version string" ON) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules") include(AddSYCLExecutable) -set(SYCL_MAJOR_VERSION 3) -set(SYCL_MINOR_VERSION 1) +set(SYCL_MAJOR_VERSION 4) +set(SYCL_MINOR_VERSION 0) set(SYCL_PATCH_VERSION 0) set(SYCL_DEV_ABI_VERSION 0) if (SYCL_ADD_DEV_VERSION_POSTFIX) diff --git a/sycl/ReleaseNotes.md b/sycl/ReleaseNotes.md index 3428d543b4fd..eb6b34e6553f 100644 --- a/sycl/ReleaseNotes.md +++ b/sycl/ReleaseNotes.md @@ -112,6 +112,8 @@ Release notes for commit range 5976ff0..1fc0e4f - Enabled USM indirect access for interoperability kernels [ebf5c4e] ## API/ABI breakages + - Added missing constructors and propety methods for context, program and + sampler[30b8acc] ## Known issues - The format of the object files produced by the compiler can change between From b1016a2bbd6f8d59c863493c8025d5bac40b5142 Mon Sep 17 00:00:00 2001 From: Sergey Kanaev Date: Mon, 14 Sep 2020 18:12:28 +0300 Subject: [PATCH 2/2] [SYCL] Fix link Signed-off-by: Sergey Kanaev --- sycl/ReleaseNotes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/ReleaseNotes.md b/sycl/ReleaseNotes.md index eb6b34e6553f..78c8a6a3cd32 100644 --- a/sycl/ReleaseNotes.md +++ b/sycl/ReleaseNotes.md @@ -142,7 +142,7 @@ Release notes for commit range 5976ff0..1fc0e4f Release notes for the commit range 75b3dc2..5976ff0 ## New features - - Implemented basic support for the [Explicit SIMD extension](./sycl/doc/extensions/ExplicitSIMD/dpcpp-explicit-simd.md) + - Implemented basic support for the [Explicit SIMD extension](doc/extensions/ExplicitSIMD/dpcpp-explicit-simd.md) for low-level GPU performance tuning [84bf234] [32bf607] [a lot of others] - Implemented support for the [SYCL_INTEL_usm_address_spaces extension](https://github.com/intel/llvm/pull/1840) - Implemented support for the [Use Pinned Host Memory Property extension](doc/extensions/UsePinnedMemoryProperty/UsePinnedMemoryPropery.adoc) [e5ea144][aee2d6c][396759d]