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 4
4
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5
5
6
6
cmake_minimum_required (VERSION 3.14.0 FATAL_ERROR )
7
- project (unified-runtime VERSION 0.7 .0 )
7
+ project (unified-runtime VERSION 0.8 .0 )
8
8
9
9
include (GNUInstallDirs )
10
10
include (CheckCXXSourceCompiles )
Original file line number Diff line number Diff line change 6
6
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7
7
8
8
@file ur.py
9
- @version v0.7 -r0
9
+ @version v0.8 -r0
10
10
11
11
"""
12
12
import platform
@@ -570,7 +570,8 @@ def __str__(self):
570
570
class ur_api_version_v (IntEnum ):
571
571
_0_6 = UR_MAKE_VERSION ( 0 , 6 ) ## version 0.6
572
572
_0_7 = UR_MAKE_VERSION ( 0 , 7 ) ## version 0.7
573
- CURRENT = UR_MAKE_VERSION ( 0 , 7 ) ## latest known version
573
+ _0_8 = UR_MAKE_VERSION ( 0 , 8 ) ## version 0.8
574
+ CURRENT = UR_MAKE_VERSION ( 0 , 8 ) ## latest known version
574
575
575
576
class ur_api_version_t (c_int ):
576
577
def __str__ (self ):
Original file line number Diff line number Diff line change 7
7
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8
8
*
9
9
* @file ur_api.h
10
- * @version v0.7 -r0
10
+ * @version v0.8 -r0
11
11
*
12
12
*/
13
13
#ifndef UR_API_H_INCLUDED
@@ -1022,7 +1022,8 @@ urPlatformGetInfo(
1022
1022
typedef enum ur_api_version_t {
1023
1023
UR_API_VERSION_0_6 = UR_MAKE_VERSION(0, 6), ///< version 0.6
1024
1024
UR_API_VERSION_0_7 = UR_MAKE_VERSION(0, 7), ///< version 0.7
1025
- UR_API_VERSION_CURRENT = UR_MAKE_VERSION(0, 7), ///< latest known version
1025
+ UR_API_VERSION_0_8 = UR_MAKE_VERSION(0, 8), ///< version 0.8
1026
+ UR_API_VERSION_CURRENT = UR_MAKE_VERSION(0, 8), ///< latest known version
1026
1027
/// @cond
1027
1028
UR_API_VERSION_FORCE_UINT32 = 0x7fffffff
1028
1029
/// @endcond
Original file line number Diff line number Diff line change 7
7
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8
8
*
9
9
* @file ur_ddi.h
10
- * @version v0.7 -r0
10
+ * @version v0.8 -r0
11
11
*
12
12
*/
13
13
#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"
38
38
# could be handy for archiving the generated documentation or if some version
39
39
# control system is used.
40
40
41
- PROJECT_NUMBER = v0.7
41
+ PROJECT_NUMBER = v0.8
42
42
43
43
# Using the PROJECT_BRIEF tag one can provide an optional one line description
44
44
# 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:
133
133
- name : " 0_7"
134
134
value : " $X_MAKE_VERSION( 0, 7 )"
135
135
desc : " version 0.7"
136
+ - name : " 0_8"
137
+ value : " $X_MAKE_VERSION( 0, 8 )"
138
+ desc : " version 0.8"
136
139
--- # --------------------------------------------------------------------------
137
140
type : function
138
141
desc : " Returns the API version supported by the specified platform"
Original file line number Diff line number Diff line change 18
18
import ctypes
19
19
import itertools
20
20
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" ]
23
23
24
24
"""
25
25
preprocess object
Original file line number Diff line number Diff line change 7
7
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8
8
*
9
9
* @file ur_api.cpp
10
- * @version v0.7 -r0
10
+ * @version v0.8 -r0
11
11
*
12
12
*/
13
13
#include " ur_api.h"
You can’t perform that action at this time.
0 commit comments