Skip to content

Commit 3abd2d0

Browse files
committed
[DO NOT MERGE] Update to spec v1.13.0
Signed-off-by: Vishnu Khanth <vishnu.khanth.b@intel.com>
1 parent 267a243 commit 3abd2d0

10 files changed

Lines changed: 16 additions & 14 deletions

File tree

include/ze.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
SPDX-License-Identifier: MIT
55
66
@file ze.py
7-
@version v1.13-r1.13.0
7+
@version v1.13-r1.13.1
88
99
"""
1010
import platform
@@ -507,7 +507,8 @@ class ze_api_version_v(IntEnum):
507507
_1_10 = ZE_MAKE_VERSION( 1, 10 ) ## version 1.10
508508
_1_11 = ZE_MAKE_VERSION( 1, 11 ) ## version 1.11
509509
_1_12 = ZE_MAKE_VERSION( 1, 12 ) ## version 1.12
510-
CURRENT = ZE_MAKE_VERSION( 1, 12 ) ## latest known version
510+
_1_13 = ZE_MAKE_VERSION( 1, 13 ) ## version 1.13
511+
CURRENT = ZE_MAKE_VERSION( 1, 13 ) ## latest known version
511512

512513
class ze_api_version_t(c_int):
513514
def __str__(self):
@@ -516,7 +517,7 @@ def __str__(self):
516517

517518
###############################################################################
518519
## @brief Current API version as a macro
519-
ZE_API_VERSION_CURRENT_M = ZE_MAKE_VERSION( 1, 12 )
520+
ZE_API_VERSION_CURRENT_M = ZE_MAKE_VERSION( 1, 13 )
520521

521522
###############################################################################
522523
## @brief Maximum driver universal unique id (UUID) size in bytes

include/ze_api.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SPDX-License-Identifier: MIT
66
*
77
* @file ze_api.h
8-
* @version v1.13-r1.13.0
8+
* @version v1.13-r1.13.1
99
*
1010
*/
1111
#ifndef _ZE_API_H
@@ -1281,15 +1281,16 @@ typedef enum _ze_api_version_t
12811281
ZE_API_VERSION_1_10 = ZE_MAKE_VERSION( 1, 10 ), ///< version 1.10
12821282
ZE_API_VERSION_1_11 = ZE_MAKE_VERSION( 1, 11 ), ///< version 1.11
12831283
ZE_API_VERSION_1_12 = ZE_MAKE_VERSION( 1, 12 ), ///< version 1.12
1284-
ZE_API_VERSION_CURRENT = ZE_MAKE_VERSION( 1, 12 ), ///< latest known version
1284+
ZE_API_VERSION_1_13 = ZE_MAKE_VERSION( 1, 13 ), ///< version 1.13
1285+
ZE_API_VERSION_CURRENT = ZE_MAKE_VERSION( 1, 13 ), ///< latest known version
12851286
ZE_API_VERSION_FORCE_UINT32 = 0x7fffffff, ///< Value marking end of ZE_API_VERSION_* ENUMs
12861287

12871288
} ze_api_version_t;
12881289

12891290
///////////////////////////////////////////////////////////////////////////////
12901291
#ifndef ZE_API_VERSION_CURRENT_M
12911292
/// @brief Current API version as a macro
1292-
#define ZE_API_VERSION_CURRENT_M ZE_MAKE_VERSION( 1, 12 )
1293+
#define ZE_API_VERSION_CURRENT_M ZE_MAKE_VERSION( 1, 13 )
12931294
#endif // ZE_API_VERSION_CURRENT_M
12941295

12951296
///////////////////////////////////////////////////////////////////////////////

include/ze_ddi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SPDX-License-Identifier: MIT
66
*
77
* @file ze_ddi.h
8-
* @version v1.13-r1.13.0
8+
* @version v1.13-r1.13.1
99
*
1010
*/
1111
#ifndef _ZE_DDI_H

include/ze_ddi_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SPDX-License-Identifier: MIT
66
*
77
* @file ze_ddi_common.h
8-
* @version v1.13-r1.13.0
8+
* @version v1.13-r1.13.1
99
*
1010
*/
1111
#ifndef _ZE_DDI_COMMON_H

include/zes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
SPDX-License-Identifier: MIT
55
66
@file zes.py
7-
@version v1.13-r1.13.0
7+
@version v1.13-r1.13.1
88
99
"""
1010
import platform

include/zes_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SPDX-License-Identifier: MIT
66
*
77
* @file zes_api.h
8-
* @version v1.13-r1.13.0
8+
* @version v1.13-r1.13.1
99
*
1010
*/
1111
#ifndef _ZES_API_H

include/zes_ddi.h

Lines changed: 1 addition & 1 deletion
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.13-r1.13.0
8+
* @version v1.13-r1.13.1
99
*
1010
*/
1111
#ifndef _ZES_DDI_H

include/zet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
SPDX-License-Identifier: MIT
55
66
@file zet.py
7-
@version v1.13-r1.13.0
7+
@version v1.13-r1.13.1
88
99
"""
1010
import platform

include/zet_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SPDX-License-Identifier: MIT
66
*
77
* @file zet_api.h
8-
* @version v1.13-r1.13.0
8+
* @version v1.13-r1.13.1
99
*
1010
*/
1111
#ifndef _ZET_API_H

include/zet_ddi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SPDX-License-Identifier: MIT
66
*
77
* @file zet_ddi.h
8-
* @version v1.13-r1.13.0
8+
* @version v1.13-r1.13.1
99
*
1010
*/
1111
#ifndef _ZET_DDI_H

0 commit comments

Comments
 (0)