Skip to content

Commit 2c8fd3f

Browse files
committed
Update to spec 1.6.10
Signed-off-by: Brandon Yates <[email protected]>
1 parent f35123b commit 2c8fd3f

34 files changed

+7393
-5921
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Level zero loader changelog
22

3+
## v1.12.0
4+
* Update to spec 1.6.10
35
## v1.11.0
46
* Update to spec 1.6.3
57
* Add validation for handle lifetime

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ endif()
1212

1313
# This project follows semantic versioning (https://semver.org/). Only set the
1414
# major and minor version here - patch version is determined dynamically.
15-
project(level-zero VERSION 1.11)
15+
project(level-zero VERSION 1.12)
1616

1717
# Patch version corresponds to # of commits on master since last version
1818
# major/minor tag (e.g., v1.0). If not building in a git repository, then get

include/ze.py

+574-570
Large diffs are not rendered by default.

include/ze_api.h

+1,864-1,856
Large diffs are not rendered by default.

include/ze_ddi.h

+49-49
Large diffs are not rendered by default.

include/zes.py

+416-415
Large diffs are not rendered by default.

include/zes_api.h

+1,616-1,612
Large diffs are not rendered by default.

include/zes_ddi.h

+39-39
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SPDX-License-Identifier: MIT
66
*
77
* @file zes_ddi.h
8-
* @version v1.6-r1.6.3
8+
* @version v1.6-r1.6.10
99
*
1010
*/
1111
#ifndef _ZES_DDI_H
@@ -43,8 +43,8 @@ typedef struct _zes_global_dditable_t
4343
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
4444
ZE_DLLEXPORT ze_result_t ZE_APICALL
4545
zesGetGlobalProcAddrTable(
46-
ze_api_version_t version, ///< [in] API version requested
47-
zes_global_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
46+
ze_api_version_t version, ///< [in] API version requested
47+
zes_global_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
4848
);
4949

5050
///////////////////////////////////////////////////////////////////////////////
@@ -383,8 +383,8 @@ typedef struct _zes_device_dditable_t
383383
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
384384
ZE_DLLEXPORT ze_result_t ZE_APICALL
385385
zesGetDeviceProcAddrTable(
386-
ze_api_version_t version, ///< [in] API version requested
387-
zes_device_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
386+
ze_api_version_t version, ///< [in] API version requested
387+
zes_device_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
388388
);
389389

390390
///////////////////////////////////////////////////////////////////////////////
@@ -443,8 +443,8 @@ typedef struct _zes_driver_dditable_t
443443
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
444444
ZE_DLLEXPORT ze_result_t ZE_APICALL
445445
zesGetDriverProcAddrTable(
446-
ze_api_version_t version, ///< [in] API version requested
447-
zes_driver_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
446+
ze_api_version_t version, ///< [in] API version requested
447+
zes_driver_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
448448
);
449449

450450
///////////////////////////////////////////////////////////////////////////////
@@ -555,8 +555,8 @@ typedef struct _zes_overclock_dditable_t
555555
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
556556
ZE_DLLEXPORT ze_result_t ZE_APICALL
557557
zesGetOverclockProcAddrTable(
558-
ze_api_version_t version, ///< [in] API version requested
559-
zes_overclock_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
558+
ze_api_version_t version, ///< [in] API version requested
559+
zes_overclock_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
560560
);
561561

562562
///////////////////////////////////////////////////////////////////////////////
@@ -651,8 +651,8 @@ typedef struct _zes_scheduler_dditable_t
651651
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
652652
ZE_DLLEXPORT ze_result_t ZE_APICALL
653653
zesGetSchedulerProcAddrTable(
654-
ze_api_version_t version, ///< [in] API version requested
655-
zes_scheduler_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
654+
ze_api_version_t version, ///< [in] API version requested
655+
zes_scheduler_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
656656
);
657657

658658
///////////////////////////////////////////////////////////////////////////////
@@ -703,8 +703,8 @@ typedef struct _zes_performance_factor_dditable_t
703703
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
704704
ZE_DLLEXPORT ze_result_t ZE_APICALL
705705
zesGetPerformanceFactorProcAddrTable(
706-
ze_api_version_t version, ///< [in] API version requested
707-
zes_performance_factor_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
706+
ze_api_version_t version, ///< [in] API version requested
707+
zes_performance_factor_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
708708
);
709709

710710
///////////////////////////////////////////////////////////////////////////////
@@ -801,8 +801,8 @@ typedef struct _zes_power_dditable_t
801801
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
802802
ZE_DLLEXPORT ze_result_t ZE_APICALL
803803
zesGetPowerProcAddrTable(
804-
ze_api_version_t version, ///< [in] API version requested
805-
zes_power_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
804+
ze_api_version_t version, ///< [in] API version requested
805+
zes_power_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
806806
);
807807

808808
///////////////////////////////////////////////////////////////////////////////
@@ -968,8 +968,8 @@ typedef struct _zes_frequency_dditable_t
968968
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
969969
ZE_DLLEXPORT ze_result_t ZE_APICALL
970970
zesGetFrequencyProcAddrTable(
971-
ze_api_version_t version, ///< [in] API version requested
972-
zes_frequency_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
971+
ze_api_version_t version, ///< [in] API version requested
972+
zes_frequency_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
973973
);
974974

975975
///////////////////////////////////////////////////////////////////////////////
@@ -1012,8 +1012,8 @@ typedef struct _zes_engine_dditable_t
10121012
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
10131013
ZE_DLLEXPORT ze_result_t ZE_APICALL
10141014
zesGetEngineProcAddrTable(
1015-
ze_api_version_t version, ///< [in] API version requested
1016-
zes_engine_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
1015+
ze_api_version_t version, ///< [in] API version requested
1016+
zes_engine_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
10171017
);
10181018

10191019
///////////////////////////////////////////////////////////////////////////////
@@ -1064,8 +1064,8 @@ typedef struct _zes_standby_dditable_t
10641064
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
10651065
ZE_DLLEXPORT ze_result_t ZE_APICALL
10661066
zesGetStandbyProcAddrTable(
1067-
ze_api_version_t version, ///< [in] API version requested
1068-
zes_standby_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
1067+
ze_api_version_t version, ///< [in] API version requested
1068+
zes_standby_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
10691069
);
10701070

10711071
///////////////////////////////////////////////////////////////////////////////
@@ -1109,8 +1109,8 @@ typedef struct _zes_firmware_dditable_t
11091109
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
11101110
ZE_DLLEXPORT ze_result_t ZE_APICALL
11111111
zesGetFirmwareProcAddrTable(
1112-
ze_api_version_t version, ///< [in] API version requested
1113-
zes_firmware_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
1112+
ze_api_version_t version, ///< [in] API version requested
1113+
zes_firmware_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
11141114
);
11151115

11161116
///////////////////////////////////////////////////////////////////////////////
@@ -1161,8 +1161,8 @@ typedef struct _zes_memory_dditable_t
11611161
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
11621162
ZE_DLLEXPORT ze_result_t ZE_APICALL
11631163
zesGetMemoryProcAddrTable(
1164-
ze_api_version_t version, ///< [in] API version requested
1165-
zes_memory_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
1164+
ze_api_version_t version, ///< [in] API version requested
1165+
zes_memory_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
11661166
);
11671167

11681168
///////////////////////////////////////////////////////////////////////////////
@@ -1237,8 +1237,8 @@ typedef struct _zes_fabric_port_dditable_t
12371237
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
12381238
ZE_DLLEXPORT ze_result_t ZE_APICALL
12391239
zesGetFabricPortProcAddrTable(
1240-
ze_api_version_t version, ///< [in] API version requested
1241-
zes_fabric_port_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
1240+
ze_api_version_t version, ///< [in] API version requested
1241+
zes_fabric_port_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
12421242
);
12431243

12441244
///////////////////////////////////////////////////////////////////////////////
@@ -1297,8 +1297,8 @@ typedef struct _zes_temperature_dditable_t
12971297
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
12981298
ZE_DLLEXPORT ze_result_t ZE_APICALL
12991299
zesGetTemperatureProcAddrTable(
1300-
ze_api_version_t version, ///< [in] API version requested
1301-
zes_temperature_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
1300+
ze_api_version_t version, ///< [in] API version requested
1301+
zes_temperature_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
13021302
);
13031303

13041304
///////////////////////////////////////////////////////////////////////////////
@@ -1341,8 +1341,8 @@ typedef struct _zes_psu_dditable_t
13411341
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
13421342
ZE_DLLEXPORT ze_result_t ZE_APICALL
13431343
zesGetPsuProcAddrTable(
1344-
ze_api_version_t version, ///< [in] API version requested
1345-
zes_psu_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
1344+
ze_api_version_t version, ///< [in] API version requested
1345+
zes_psu_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
13461346
);
13471347

13481348
///////////////////////////////////////////////////////////////////////////////
@@ -1417,8 +1417,8 @@ typedef struct _zes_fan_dditable_t
14171417
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
14181418
ZE_DLLEXPORT ze_result_t ZE_APICALL
14191419
zesGetFanProcAddrTable(
1420-
ze_api_version_t version, ///< [in] API version requested
1421-
zes_fan_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
1420+
ze_api_version_t version, ///< [in] API version requested
1421+
zes_fan_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
14221422
);
14231423

14241424
///////////////////////////////////////////////////////////////////////////////
@@ -1477,8 +1477,8 @@ typedef struct _zes_led_dditable_t
14771477
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
14781478
ZE_DLLEXPORT ze_result_t ZE_APICALL
14791479
zesGetLedProcAddrTable(
1480-
ze_api_version_t version, ///< [in] API version requested
1481-
zes_led_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
1480+
ze_api_version_t version, ///< [in] API version requested
1481+
zes_led_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
14821482
);
14831483

14841484
///////////////////////////////////////////////////////////////////////////////
@@ -1538,8 +1538,8 @@ typedef struct _zes_ras_dditable_t
15381538
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
15391539
ZE_DLLEXPORT ze_result_t ZE_APICALL
15401540
zesGetRasProcAddrTable(
1541-
ze_api_version_t version, ///< [in] API version requested
1542-
zes_ras_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
1541+
ze_api_version_t version, ///< [in] API version requested
1542+
zes_ras_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
15431543
);
15441544

15451545
///////////////////////////////////////////////////////////////////////////////
@@ -1593,8 +1593,8 @@ typedef struct _zes_diagnostics_dditable_t
15931593
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
15941594
ZE_DLLEXPORT ze_result_t ZE_APICALL
15951595
zesGetDiagnosticsProcAddrTable(
1596-
ze_api_version_t version, ///< [in] API version requested
1597-
zes_diagnostics_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
1596+
ze_api_version_t version, ///< [in] API version requested
1597+
zes_diagnostics_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
15981598
);
15991599

16001600
///////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)