Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
9325207
Fetch main branch of CCCL, using cudax
caugonnet Dec 12, 2024
37823b0
Merge branch 'branch-25.02' into cudastf
caugonnet Jan 9, 2025
012dd38
Merge branch 'branch-25.02' into cudastf
caugonnet Jan 10, 2025
ae3036b
thrust::binary_function was deprecated in CCCL 2.6 and removed in CCC…
caugonnet Jan 10, 2025
1d0d307
verify-copyright updates
caugonnet Jan 10, 2025
959bbc1
Include a thrust header that was missing to use thrust::max
caugonnet Jan 17, 2025
b76174d
Operators such as key_group_id_less_t are templated by functors which we
caugonnet Jan 17, 2025
86f4e00
CUDASTF needs -lcuda
caugonnet Jan 18, 2025
0c8497f
Start to reintroduce STF constructs in PRIMS algorithms
caugonnet Jan 18, 2025
0eb223a
Use argument elision with logical_token
caugonnet Jan 18, 2025
0f6e2ae
Merge branch 'rapidsai:branch-25.02' into cudastf
caugonnet Jan 21, 2025
22b54cc
More work (in progress) to enable only parts of the algorithms
caugonnet Jan 22, 2025
f960650
Save WIP for page rank with STF
caugonnet Jan 22, 2025
2f1e0c5
use async resources saved in raft handles to initialize the stream ctx
caugonnet Jan 22, 2025
dc863de
Merge branch 'branch-25.04' into cudastf
caugonnet Mar 26, 2025
0f0d53f
revert previous change broken by the previous merge
caugonnet Mar 26, 2025
f5f0c5e
Merge branch 'rapidsai:branch-25.04' into cudastf
caugonnet Mar 30, 2025
d2031bf
revert some outdated cmake changes
caugonnet Mar 30, 2025
fee82d2
Workaround a warning that we cannot capture structured binding before…
caugonnet Mar 31, 2025
3e62f73
Update token API
caugonnet Apr 14, 2025
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
9 changes: 9 additions & 0 deletions cpp/cmake/thirdparty/cccl_override.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"packages": {
"cccl": {
"version": "2.8.0",
"git_url": "https://github.com/NVIDIA/cccl.git",
"git_tag": "main"
}
}
}
7 changes: 7 additions & 0 deletions cpp/cmake/thirdparty/get_cccl.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
# This function finds CCCL and sets any additional necessary environment variables.
function(find_and_configure_cccl)
include(${rapids-cmake-dir}/cpm/cccl.cmake)
include(${rapids-cmake-dir}/cpm/package_override.cmake)

rapids_cpm_package_override("${CMAKE_CURRENT_FUNCTION_LIST_DIR}/cccl_override.json")
Copy link
Author

Choose a reason for hiding this comment

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

This may be something we surround with some CUGRAPH_USE_STF option for example


# Enable cudax namespace install
set(CCCL_ENABLE_UNSTABLE ON)

rapids_cpm_cccl(BUILD_EXPORT_SET cugraph-exports INSTALL_EXPORT_SET cugraph-exports)
endfunction()

Expand Down
Loading