Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Version] Update main to v3.0.0 #3265

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cccl-version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"full": "2.9.0",
"major": 2,
"minor": 9,
"full": "3.0.0",
"major": 3,
"minor": 0,
"patch": 0
}
2 changes: 1 addition & 1 deletion cub/cub/version.cuh
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@
* <tt>CUB_VERSION / 100 % 1000</tt> is the minor version.
* <tt>CUB_VERSION / 100000</tt> is the major version.
*/
#define CUB_VERSION 200900 // macro expansion with ## requires this to be a single value
#define CUB_VERSION 300000 // macro expansion with ## requires this to be a single value

/*! \def CUB_MAJOR_VERSION
* \brief The preprocessor macro \p CUB_MAJOR_VERSION encodes the
4 changes: 2 additions & 2 deletions lib/cmake/cccl/cccl-config-version.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set(CCCL_VERSION_MAJOR 2)
set(CCCL_VERSION_MINOR 9)
set(CCCL_VERSION_MAJOR 3)
set(CCCL_VERSION_MINOR 0)
set(CCCL_VERSION_PATCH 0)
set(CCCL_VERSION_TWEAK 0)

4 changes: 2 additions & 2 deletions lib/cmake/cub/cub-config-version.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Parse version information from version.cuh:
include("${CMAKE_CURRENT_LIST_DIR}/cub-header-search.cmake")

set(CUB_VERSION_MAJOR 2)
set(CUB_VERSION_MINOR 9)
set(CUB_VERSION_MAJOR 3)
set(CUB_VERSION_MINOR 0)
set(CUB_VERSION_PATCH 0)
set(CUB_VERSION_TWEAK 0)
set(CUB_VERSION "${CUB_VERSION_MAJOR}.${CUB_VERSION_MINOR}.${CUB_VERSION_PATCH}.${CUB_VERSION_TWEAK}")
4 changes: 2 additions & 2 deletions lib/cmake/cudax/cudax-config-version.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set(cudax_VERSION_MAJOR 2)
set(cudax_VERSION_MINOR 9)
set(cudax_VERSION_MAJOR 3)
set(cudax_VERSION_MINOR 0)
set(cudax_VERSION_PATCH 0)
set(cudax_VERSION_TWEAK 0)

4 changes: 2 additions & 2 deletions lib/cmake/libcudacxx/libcudacxx-config-version.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Parse version information from version header:
include("${CMAKE_CURRENT_LIST_DIR}/libcudacxx-header-search.cmake")

set(libcudacxx_VERSION_MAJOR 2)
set(libcudacxx_VERSION_MINOR 9)
set(libcudacxx_VERSION_MAJOR 3)
set(libcudacxx_VERSION_MINOR 0)
set(libcudacxx_VERSION_PATCH 0)
set(libcudacxx_VERSION_TWEAK 0)

4 changes: 2 additions & 2 deletions lib/cmake/thrust/thrust-config-version.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Parse version information from version.h:
include("${CMAKE_CURRENT_LIST_DIR}/thrust-header-search.cmake")

set(THRUST_VERSION_MAJOR 2)
set(THRUST_VERSION_MINOR 9)
set(THRUST_VERSION_MAJOR 3)
set(THRUST_VERSION_MINOR 0)
set(THRUST_VERSION_PATCH 0) # Thrust: "subminor" CMake: "patch"
set(THRUST_VERSION_TWEAK 0)
set(THRUST_VERSION "${THRUST_VERSION_MAJOR}.${THRUST_VERSION_MINOR}.${THRUST_VERSION_PATCH}.${THRUST_VERSION_TWEAK}")
2 changes: 1 addition & 1 deletion libcudacxx/include/cuda/std/__cccl/version.h
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@
#ifndef __CCCL_VERSION_H
#define __CCCL_VERSION_H

#define CCCL_VERSION 2009000
#define CCCL_VERSION 3000000
#define CCCL_MAJOR_VERSION (CCCL_VERSION / 1000000)
#define CCCL_MINOR_VERSION (((CCCL_VERSION / 1000) % 1000))
#define CCCL_PATCH_VERSION (CCCL_VERSION % 1000)
2 changes: 1 addition & 1 deletion python/cuda_cooperative/cuda/cooperative/_version.py
Original file line number Diff line number Diff line change
@@ -4,4 +4,4 @@

# This file is generated by ci/update_version.sh
# Do not edit this file manually.
__version__ = "0.1.2.9.0"
__version__ = "0.1.3.0.0"
2 changes: 1 addition & 1 deletion python/cuda_parallel/cuda/parallel/_version.py
Original file line number Diff line number Diff line change
@@ -4,4 +4,4 @@

# This file is generated by ci/update_version.sh
# Do not edit this file manually.
__version__ = "0.1.2.9.0"
__version__ = "0.1.3.0.0"
2 changes: 1 addition & 1 deletion thrust/thrust/version.h
Original file line number Diff line number Diff line change
@@ -61,7 +61,7 @@
* <tt>THRUST_VERSION / 100 % 1000</tt> is the minor version.
* <tt>THRUST_VERSION / 100000</tt> is the major version.
*/
#define THRUST_VERSION 200900 // macro expansion with ## requires this to be a single value
#define THRUST_VERSION 300000 // macro expansion with ## requires this to be a single value

/*! \def THRUST_MAJOR_VERSION
* \brief The preprocessor macro \p THRUST_MAJOR_VERSION encodes the