From cc8e5a3d21fa3bbca364e20fee6d0eea17c7d4b3 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Thu, 15 Feb 2024 15:28:12 +0100 Subject: [PATCH 1/2] Merge pull request #1344 from aarongreig/aaron/correctlyMapBufferLocation Correct mapping of BUFFER_ALLOC_LOCATION_PROPERITES in CL adapter. --- source/adapters/opencl/memory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/adapters/opencl/memory.cpp b/source/adapters/opencl/memory.cpp index e93f0731c6..81b7bb706e 100644 --- a/source/adapters/opencl/memory.cpp +++ b/source/adapters/opencl/memory.cpp @@ -251,7 +251,7 @@ UR_APIEXPORT ur_result_t UR_APICALL urMemBufferCreate( case UR_STRUCTURE_TYPE_BUFFER_ALLOC_LOCATION_PROPERTIES: { auto BufferLocationProperty = reinterpret_cast(Prop); - PropertiesIntel.push_back(CL_MEM_ALLOC_FLAGS_INTEL); + PropertiesIntel.push_back(CL_MEM_ALLOC_BUFFER_LOCATION_INTEL); PropertiesIntel.push_back(BufferLocationProperty->location); } break; default: From 332d24bbe38b2fc297ada9b487b3f0f6b4e153ec Mon Sep 17 00:00:00 2001 From: Aaron Greig Date: Thu, 15 Feb 2024 16:18:09 +0000 Subject: [PATCH 2/2] Set version to v0.8.9 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ee74612da9..295974292b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception cmake_minimum_required(VERSION 3.14.0 FATAL_ERROR) -project(unified-runtime VERSION 0.8.8) +project(unified-runtime VERSION 0.8.9) include(GNUInstallDirs) include(CheckCXXSourceCompiles)