documentation: Update L0 Core release version to v1.5

Signed-off-by: Aravind Gopalakrishnan <aravind.gopalakrishnan@intel.com>
This commit is contained in:
Aravind Gopalakrishnan
2024-06-27 18:16:59 +00:00
committed by Compute-Runtime-Automation
parent ab92499b56
commit 218663e1d5
4 changed files with 23 additions and 4 deletions

View File

@@ -109,7 +109,7 @@ NEO::SVMAllocsManager *DriverHandleImp::getSvmAllocsManager() {
}
ze_result_t DriverHandleImp::getApiVersion(ze_api_version_t *version) {
*version = ZE_API_VERSION_1_3;
*version = ZE_API_VERSION_1_5;
return ZE_RESULT_SUCCESS;
}

View File

@@ -1143,7 +1143,7 @@ TEST_F(DriverHandleTest, whenQueryingForApiVersionThenExpectedVersionIsReturned)
ze_api_version_t version = {};
ze_result_t result = driverHandle->getApiVersion(&version);
EXPECT_EQ(ZE_RESULT_SUCCESS, result);
EXPECT_EQ(ZE_API_VERSION_1_3, version);
EXPECT_EQ(ZE_API_VERSION_1_5, version);
}
TEST_F(DriverHandleTest, whenQueryingForDevicesWithCountGreaterThanZeroAndNullDevicePointerThenNullHandleIsReturned) {

View File

@@ -1,11 +1,30 @@
<!---
Copyright (C) 2021 Intel Corporation
Copyright (C) 2021-2024 Intel Corporation
SPDX-License-Identifier: MIT
-->
# Release Notes v1.5
Level Zero Core API.
June 2024
Changes in this release:
The update involves changes introduced across Level Zero spec from v1.3 upto and including v1.5. Some of the important changes are as follows:
| Feature | Spec link | Notes |
| ------------------ | -------------------| ----------------------------- |
| Support for Device IP Version extension | https://spec.oneapi.io/level-zero/latest/core/api.html#deviceipversion-structures | |
| Support for Image view and Image view planar extension | https://spec.oneapi.io/level-zero/latest/core/api.html#imageview | |
| Support for sub allocation properties extension | https://spec.oneapi.io/level-zero/latest/core/api.html#suballocationsproperties | |
| Allow IPC events with timestamp events | | Previously spec had limitation disallowing usage of IPC for event pools created with timestamp flag. This limitation is now removed for both spec and implemenation |
| Support for kernel max group size properties extension | https://spec.oneapi.io/level-zero/latest/core/api.html#kernelmaxgroupsizeproperties | |
# Release Notes v1.3
Level Zero Core API.

View File

@@ -83,7 +83,7 @@ set(NEO_OCL_DRIVER_VERSION "${NEO_OCL_VERSION_MAJOR}.${NEO_OCL_VERSION_MINOR}.${
# Level-Zero package version
set(NEO_L0_VERSION_MAJOR 1)
set(NEO_L0_VERSION_MINOR 3)
set(NEO_L0_VERSION_MINOR 5)
# Remove leading zeros
string(REGEX REPLACE "^0+([0-9]+)" "\\1" NEO_VERSION_BUILD "${NEO_VERSION_BUILD}")