Commit 92441d0 1 parent 79e0c17 commit 92441d0 Copy full SHA for 92441d0
File tree 7 files changed +10
-7
lines changed
7 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 2
2
include ("${CMAKE_CURRENT_LIST_DIR} /cub-header-search.cmake" )
3
3
4
4
set (CUB_VERSION_MAJOR 2)
5
- set (CUB_VERSION_MINOR 4 )
5
+ set (CUB_VERSION_MINOR 5 )
6
6
set (CUB_VERSION_PATCH 0)
7
7
set (CUB_VERSION_TWEAK 0)
8
8
set (CUB_VERSION "${CUB_VERSION_MAJOR} .${CUB_VERSION_MINOR} .${CUB_VERSION_PATCH} .${CUB_VERSION_TWEAK} " )
Original file line number Diff line number Diff line change 58
58
* <tt>CUB_VERSION / 100 % 1000</tt> is the minor version.
59
59
* <tt>CUB_VERSION / 100000</tt> is the major version.
60
60
*/
61
- #define CUB_VERSION 200400 // macro expansion with ## requires this to be a single value
61
+ #define CUB_VERSION 200500 // macro expansion with ## requires this to be a single value
62
62
63
63
/* ! \def CUB_MAJOR_VERSION
64
64
* \brief The preprocessor macro \p CUB_MAJOR_VERSION encodes the
Original file line number Diff line number Diff line change 1
1
set (CCCL_VERSION_MAJOR 2)
2
- set (CCCL_VERSION_MINOR 4 )
2
+ set (CCCL_VERSION_MINOR 5 )
3
3
set (CCCL_VERSION_PATCH 0)
4
4
set (CCCL_VERSION_TWEAK 0)
5
5
Original file line number Diff line number Diff line change 7
7
// SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES.
8
8
//
9
9
//===----------------------------------------------------------------------===//
10
+ // This file is somewhat automatically generated. Disable clang-format.
11
+ // clang-format off
12
+
10
13
11
14
#ifndef __CCCL_VERSION_H
12
15
#define __CCCL_VERSION_H
13
16
14
- #define CCCL_VERSION 2004000
17
+ #define CCCL_VERSION 2005000
15
18
#define CCCL_MAJOR_VERSION (CCCL_VERSION / 1000000)
16
19
#define CCCL_MINOR_VERSION (((CCCL_VERSION / 1000) % 1000))
17
20
#define CCCL_PATCH_VERSION (CCCL_VERSION % 1000)
Original file line number Diff line number Diff line change 2
2
include ("${CMAKE_CURRENT_LIST_DIR} /libcudacxx-header-search.cmake" )
3
3
4
4
set (libcudacxx_VERSION_MAJOR 2)
5
- set (libcudacxx_VERSION_MINOR 4 )
5
+ set (libcudacxx_VERSION_MINOR 5 )
6
6
set (libcudacxx_VERSION_PATCH 0)
7
7
set (libcudacxx_VERSION_TWEAK 0)
8
8
Original file line number Diff line number Diff line change 2
2
include ("${CMAKE_CURRENT_LIST_DIR} /thrust-header-search.cmake" )
3
3
4
4
set (THRUST_VERSION_MAJOR 2)
5
- set (THRUST_VERSION_MINOR 4 )
5
+ set (THRUST_VERSION_MINOR 5 )
6
6
set (THRUST_VERSION_PATCH 0) # Thrust: "subminor" CMake: "patch"
7
7
set (THRUST_VERSION_TWEAK 0)
8
8
set (THRUST_VERSION "${THRUST_VERSION_MAJOR} .${THRUST_VERSION_MINOR} .${THRUST_VERSION_PATCH} .${THRUST_VERSION_TWEAK} " )
Original file line number Diff line number Diff line change 61
61
* <tt>THRUST_VERSION / 100 % 1000</tt> is the minor version.
62
62
* <tt>THRUST_VERSION / 100000</tt> is the major version.
63
63
*/
64
- #define THRUST_VERSION 200400 // macro expansion with ## requires this to be a single value
64
+ #define THRUST_VERSION 200500 // macro expansion with ## requires this to be a single value
65
65
66
66
/*! \def THRUST_MAJOR_VERSION
67
67
* \brief The preprocessor macro \p THRUST_MAJOR_VERSION encodes the
You can’t perform that action at this time.
0 commit comments