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

Upgrade to nvcomp 4.0.1 #16076

Merged
merged 27 commits into from
Sep 5, 2024
Merged
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
3c87d11
hackeroony
vuule Jun 24, 2024
603f7bc
style
vuule Jun 24, 2024
33eda8e
Merge branch 'branch-24.08' into fea-test-nvcomp-4.0
robertmaynard Jul 19, 2024
76aeb0f
Remove nvcomp targets that don't exist in 4.0
robertmaynard Jul 22, 2024
85bfda5
Improve nvcomp install logic
robertmaynard Jul 22, 2024
5c19f8d
Verify we can fix the nvcomp driver dependency issue
robertmaynard Jul 22, 2024
c1c9a15
Fix issues found by CI
robertmaynard Jul 22, 2024
94c701b
update JNI build to support nvcomp4
pxLi Jul 11, 2024
c89ee4a
Fix issues found by CI
robertmaynard Jul 22, 2024
7cc1edf
Merge branch 'branch-24.10' into fea-test-nvcomp-4.0
robertmaynard Aug 7, 2024
dd49521
Merge branch 'branch-24.10' into fea-test-nvcomp-4.0
robertmaynard Aug 27, 2024
b8d0341
Merge branch 'branch-24.10' into fea-test-nvcomp-4.0
vuule Aug 27, 2024
1fad2fb
Correct issues found during code review
robertmaynard Aug 29, 2024
33dcfda
Revert copyright change.
bdice Aug 29, 2024
e5d6f17
Fix style.
bdice Aug 29, 2024
af8cb0c
Add rapids_cython_init().
bdice Aug 29, 2024
e4f0266
Merge branch 'branch-24.10' into fea-test-nvcomp-4.0
vuule Sep 3, 2024
050c5eb
Merge branch 'branch-24.10' into fea-test-nvcomp-4.0
vuule Sep 3, 2024
125f7c4
Merge branch 'branch-24.10' into fea-test-nvcomp-4.0
vuule Sep 4, 2024
f77303d
remove remaining bitcomp/gdeflate
vuule Sep 4, 2024
4a9e942
yamls
vuule Sep 4, 2024
daabb02
style
vuule Sep 4, 2024
51eca0e
Update java/src/main/native/CMakeLists.txt
ttnghia Sep 4, 2024
386e1e9
Update java/src/main/native/CMakeLists.txt
ttnghia Sep 4, 2024
6c28953
style
vuule Sep 4, 2024
202e856
Merge branch 'branch-24.10' into fea-test-nvcomp-4.0
vuule Sep 4, 2024
ce03947
Revert rapids-cmake test branch.
bdice Sep 5, 2024
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
5 changes: 5 additions & 0 deletions rapids_config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# the License.
# =============================================================================
file(READ "${CMAKE_CURRENT_LIST_DIR}/VERSION" _rapids_version)

robertmaynard marked this conversation as resolved.
Show resolved Hide resolved
if(_rapids_version MATCHES [[^([0-9][0-9])\.([0-9][0-9])\.([0-9][0-9])]])
set(RAPIDS_VERSION_MAJOR "${CMAKE_MATCH_1}")
set(RAPIDS_VERSION_MINOR "${CMAKE_MATCH_2}")
Expand All @@ -33,4 +34,8 @@ if(NOT EXISTS "${CMAKE_CURRENT_BINARY_DIR}/CUDF_RAPIDS-${RAPIDS_VERSION_MAJOR_MI
"${CMAKE_CURRENT_BINARY_DIR}/CUDF_RAPIDS-${RAPIDS_VERSION_MAJOR_MINOR}.cmake"
)
endif()

set(rapids-cmake-repo vuule/rapids-cmake)
set(rapids-cmake-branch test-nvcomp-4.0)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

REMOVE BEFORE MERGING


include("${CMAKE_CURRENT_BINARY_DIR}/CUDF_RAPIDS-${RAPIDS_VERSION_MAJOR_MINOR}.cmake")
Loading