Skip to content
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

Release candidate for v0.8.9 #1348

Merged
merged 2 commits into from
Feb 15, 2024
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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion source/adapters/opencl/memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ UR_APIEXPORT ur_result_t UR_APICALL urMemBufferCreate(
case UR_STRUCTURE_TYPE_BUFFER_ALLOC_LOCATION_PROPERTIES: {
auto BufferLocationProperty =
reinterpret_cast<ur_buffer_alloc_location_properties_t *>(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:
Expand Down
Loading