mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-20 13:11:34 +08:00
Revert "feature: Update L0 Core release version to v1.6"
This reverts commit 4eefd9eef7
.
Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
f58b5b6ac3
commit
e6079cdf24
@ -110,7 +110,7 @@ NEO::SVMAllocsManager *DriverHandleImp::getSvmAllocsManager() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ze_result_t DriverHandleImp::getApiVersion(ze_api_version_t *version) {
|
ze_result_t DriverHandleImp::getApiVersion(ze_api_version_t *version) {
|
||||||
*version = ZE_API_VERSION_1_6;
|
*version = ZE_API_VERSION_1_5;
|
||||||
return ZE_RESULT_SUCCESS;
|
return ZE_RESULT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1202,7 +1202,7 @@ TEST_F(DriverHandleTest, whenQueryingForApiVersionThenExpectedVersionIsReturned)
|
|||||||
ze_api_version_t version = {};
|
ze_api_version_t version = {};
|
||||||
ze_result_t result = driverHandle->getApiVersion(&version);
|
ze_result_t result = driverHandle->getApiVersion(&version);
|
||||||
EXPECT_EQ(ZE_RESULT_SUCCESS, result);
|
EXPECT_EQ(ZE_RESULT_SUCCESS, result);
|
||||||
EXPECT_EQ(ZE_API_VERSION_1_6, version);
|
EXPECT_EQ(ZE_API_VERSION_1_5, version);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_F(DriverHandleTest, whenQueryingForDevicesWithCountGreaterThanZeroAndNullDevicePointerThenNullHandleIsReturned) {
|
TEST_F(DriverHandleTest, whenQueryingForDevicesWithCountGreaterThanZeroAndNullDevicePointerThenNullHandleIsReturned) {
|
||||||
|
@ -6,24 +6,6 @@ SPDX-License-Identifier: MIT
|
|||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
# Release Notes v1.6
|
|
||||||
|
|
||||||
Level Zero Core API.
|
|
||||||
|
|
||||||
September 2024
|
|
||||||
|
|
||||||
Changes in this release:
|
|
||||||
|
|
||||||
The update involves changes introduced in Level Zero spec v1.6. Some of the important changes are as follows:
|
|
||||||
|
|
||||||
| Feature | Spec link | Notes |
|
|
||||||
| ------------------ | -------------------| ----------------------------- |
|
|
||||||
| Support for zeCommandListHostSynchronize API | https://spec.oneapi.io/level-zero/latest/core/api.html#zecommandlisthostsynchronize | |
|
|
||||||
| Support for zeDriverGetLastErrorDescription API | https://spec.oneapi.io/level-zero/latest/core/api.html#zedrivergetlasterrordescription | |
|
|
||||||
| Support for zeMemPutIpcHandle API | https://spec.oneapi.io/level-zero/latest/core/api.html#zememputipchandle | |
|
|
||||||
| Support for EventPool Get and put IPC handle APIs | https://spec.oneapi.io/level-zero/latest/core/api.html#zeeventpoolgetipchandle , https://spec.oneapi.io/level-zero/latest/core/api.html#zeeventpoolputipchandle | |
|
|
||||||
| Support for host mapped and synchronized event timestamp extension API | https://spec.oneapi.io/level-zero/latest/core/api.html#eventquerykerneltimestamps | |
|
|
||||||
|
|
||||||
# Release Notes v1.5
|
# Release Notes v1.5
|
||||||
|
|
||||||
Level Zero Core API.
|
Level Zero Core API.
|
||||||
|
@ -83,7 +83,7 @@ set(NEO_OCL_DRIVER_VERSION "${NEO_OCL_VERSION_MAJOR}.${NEO_OCL_VERSION_MINOR}.${
|
|||||||
|
|
||||||
# Level-Zero package version
|
# Level-Zero package version
|
||||||
set(NEO_L0_VERSION_MAJOR 1)
|
set(NEO_L0_VERSION_MAJOR 1)
|
||||||
set(NEO_L0_VERSION_MINOR 6)
|
set(NEO_L0_VERSION_MINOR 5)
|
||||||
|
|
||||||
# Remove leading zeros
|
# Remove leading zeros
|
||||||
string(REGEX REPLACE "^0+([0-9]+)" "\\1" NEO_VERSION_BUILD "${NEO_VERSION_BUILD}")
|
string(REGEX REPLACE "^0+([0-9]+)" "\\1" NEO_VERSION_BUILD "${NEO_VERSION_BUILD}")
|
||||||
|
Reference in New Issue
Block a user