File tree Expand file tree Collapse file tree 8 files changed +15
-10
lines changed
Expand file tree Collapse file tree 8 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 44# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
55
66cmake_minimum_required (VERSION 3.14.0 FATAL_ERROR )
7- project (unified-runtime VERSION 0.7 .0)
7+ project (unified-runtime VERSION 0.8 .0)
88
99include (GNUInstallDirs )
1010include (CheckCXXSourceCompiles )
Original file line number Diff line number Diff line change 66 SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
77
88 @file ur.py
9- @version v0.7 -r0
9+ @version v0.8 -r0
1010
1111 """
1212import platform
@@ -573,7 +573,8 @@ def __str__(self):
573573class ur_api_version_v (IntEnum ):
574574 _0_6 = UR_MAKE_VERSION ( 0 , 6 ) ## version 0.6
575575 _0_7 = UR_MAKE_VERSION ( 0 , 7 ) ## version 0.7
576- CURRENT = UR_MAKE_VERSION ( 0 , 7 ) ## latest known version
576+ _0_8 = UR_MAKE_VERSION ( 0 , 8 ) ## version 0.8
577+ CURRENT = UR_MAKE_VERSION ( 0 , 8 ) ## latest known version
577578
578579class ur_api_version_t (c_int ):
579580 def __str__ (self ):
Original file line number Diff line number Diff line change 77 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
88 *
99 * @file ur_api.h
10- * @version v0.7 -r0
10+ * @version v0.8 -r0
1111 *
1212 */
1313#ifndef UR_API_H_INCLUDED
@@ -1025,7 +1025,8 @@ urPlatformGetInfo(
10251025typedef enum ur_api_version_t {
10261026 UR_API_VERSION_0_6 = UR_MAKE_VERSION(0, 6), ///< version 0.6
10271027 UR_API_VERSION_0_7 = UR_MAKE_VERSION(0, 7), ///< version 0.7
1028- UR_API_VERSION_CURRENT = UR_MAKE_VERSION(0, 7), ///< latest known version
1028+ UR_API_VERSION_0_8 = UR_MAKE_VERSION(0, 8), ///< version 0.8
1029+ UR_API_VERSION_CURRENT = UR_MAKE_VERSION(0, 8), ///< latest known version
10291030 /// @cond
10301031 UR_API_VERSION_FORCE_UINT32 = 0x7fffffff
10311032 /// @endcond
Original file line number Diff line number Diff line change 77 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
88 *
99 * @file ur_ddi.h
10- * @version v0.7 -r0
10+ * @version v0.8 -r0
1111 *
1212 */
1313#ifndef UR_DDI_H_INCLUDED
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ PROJECT_NAME = "Intel One API Unified Runtime API"
3838# could be handy for archiving the generated documentation or if some version
3939# control system is used.
4040
41- PROJECT_NUMBER = v0.7
41+ PROJECT_NUMBER = v0.8
4242
4343# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444# for a project that appears at the top of each page and should give viewer a
Original file line number Diff line number Diff line change @@ -133,6 +133,9 @@ etors:
133133 - name : " 0_7"
134134 value : " $X_MAKE_VERSION( 0, 7 )"
135135 desc : " version 0.7"
136+ - name : " 0_8"
137+ value : " $X_MAKE_VERSION( 0, 8 )"
138+ desc : " version 0.8"
136139--- # --------------------------------------------------------------------------
137140type : function
138141desc : " Returns the API version supported by the specified platform"
Original file line number Diff line number Diff line change 1818import ctypes
1919import itertools
2020
21- default_version = "0.7 "
22- all_versions = ["0.6" , "0.7" ]
21+ default_version = "0.8 "
22+ all_versions = ["0.6" , "0.7" , "0.8" ]
2323
2424"""
2525 preprocess object
Original file line number Diff line number Diff line change 77 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
88 *
99 * @file ur_api.cpp
10- * @version v0.7 -r0
10+ * @version v0.8 -r0
1111 *
1212 */
1313#include " ur_api.h"
You can’t perform that action at this time.
0 commit comments