mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-18 13:54:58 +08:00
fix: bump exposed L0 API version to 1.13
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
19e0490e7d
commit
b54b568ce2
22
README.md
22
README.md
@@ -34,17 +34,17 @@ You may obtain a copy of the License at: https://opensource.org/licenses/MIT
|
||||
|
||||
|Platform|OpenCL|Level Zero|WSL
|
||||
|--------|:----:|:-----:|:-:|
|
||||
|DG1| 3.0 | 1.6 | Y |
|
||||
|Alchemist| 3.0 | 1.6 | Y |
|
||||
|Battlemage| 3.0 | 1.6 | Y |
|
||||
|Tiger Lake| 3.0 | 1.6 | Y |
|
||||
|Rocket Lake| 3.0 | 1.6 | Y |
|
||||
|Alder Lake| 3.0 | 1.6 | Y |
|
||||
|Raptor Lake| 3.0 | 1.6 | Y |
|
||||
|Meteor Lake| 3.0 | 1.6 | Y |
|
||||
|Arrow Lake| 3.0 | 1.6 | Y |
|
||||
|Lunar Lake| 3.0 | 1.6 | Y |
|
||||
|Panther Lake| 3.0 | 1.6 | Y |
|
||||
|DG1| 3.0 | 1.13 | Y |
|
||||
|Alchemist| 3.0 | 1.13 | Y |
|
||||
|Battlemage| 3.0 | 1.13 | Y |
|
||||
|Tiger Lake| 3.0 | 1.13 | Y |
|
||||
|Rocket Lake| 3.0 | 1.13 | Y |
|
||||
|Alder Lake| 3.0 | 1.13 | Y |
|
||||
|Raptor Lake| 3.0 | 1.13 | Y |
|
||||
|Meteor Lake| 3.0 | 1.13 | Y |
|
||||
|Arrow Lake| 3.0 | 1.13 | Y |
|
||||
|Lunar Lake| 3.0 | 1.13 | Y |
|
||||
|Panther Lake| 3.0 | 1.13 | Y |
|
||||
|
||||
_No code changes may be introduced that would regress support for any currently supported hardware. All contributions must ensure continued compatibility and functionality across all supported hardware platforms. Failure to maintain hardware compatibility may result in the rejection or reversion of the contribution. Any deliberate modifications or removal of hardware support will be transparently communicated in the release notes._
|
||||
|
||||
|
||||
@@ -1101,7 +1101,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_6, version);
|
||||
EXPECT_EQ(ZE_API_VERSION_1_13, version);
|
||||
}
|
||||
|
||||
TEST_F(DriverHandleTest, whenQueryingForDevicesWithCountGreaterThanZeroAndNullDevicePointerThenNullHandleIsReturned) {
|
||||
|
||||
@@ -1,11 +1,29 @@
|
||||
<!---
|
||||
|
||||
Copyright (C) 2021-2024 Intel Corporation
|
||||
Copyright (C) 2021-2025 Intel Corporation
|
||||
|
||||
SPDX-License-Identifier: MIT
|
||||
|
||||
-->
|
||||
|
||||
# Release Notes v1.13
|
||||
|
||||
Level Zero Core API.
|
||||
|
||||
September 2025
|
||||
|
||||
Changes in this release:
|
||||
|
||||
The update involves changes introduced across Level Zero spec from v1.6 upto and including v1.13. Some of the important changes are as follows:
|
||||
|
||||
| Feature | Spec link |
|
||||
| ------------------ | -------------------|
|
||||
| Support for RTAS Builder API | https://oneapi-src.github.io/level-zero-spec/level-zero/latest/core/api.html#rtasbuilder |
|
||||
| Support for Counter Based Event Pool API | https://oneapi-src.github.io/level-zero-spec/level-zero/latest/core/api.html#counterbasedeventpool |
|
||||
| Support for Bindless Images API | https://oneapi-src.github.io/level-zero-spec/level-zero/latest/core/api.html#bindlessimages |
|
||||
| Support for Immediate Command List Append API | https://oneapi-src.github.io/level-zero-spec/level-zero/latest/core/api.html#immediatecommandlistappend |
|
||||
| Support for Mutable Command List API | https://oneapi-src.github.io/level-zero-spec/level-zero/latest/core/api.html#mutablecommandlist |
|
||||
|
||||
# Release Notes v1.6
|
||||
|
||||
Level Zero Core API.
|
||||
|
||||
@@ -88,7 +88,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 6)
|
||||
set(NEO_L0_VERSION_MINOR 13)
|
||||
|
||||
# Remove leading zeros
|
||||
string(REGEX REPLACE "^0+([0-9]+)" "\\1" NEO_VERSION_BUILD "${NEO_VERSION_BUILD}")
|
||||
|
||||
Reference in New Issue
Block a user