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

Update to CCCL 2.8.0 #895

Merged
merged 4 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions cmake/versions.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"packages": {
"CCCL": {
"version": "2.7.0-patch",
"version": "2.8.0",
"git_shallow": false,
"git_url": "https://github.com/NVIDIA/cccl.git",
"git_tag": "cbc6b9b"
"git_tag": "6d02e11"
},
"nvbench" : {
"version" : "0.0",
Expand Down
2 changes: 1 addition & 1 deletion docs_input/build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ for supported host compilers. Other requirements for optional components are lis
Required Third-party Dependencies
---------------------------------

- `CCCL <https://github.com/NVIDIA/cccl>`_ 2.7.0+ commit cbc6b9b or higher
- `CCCL <https://github.com/NVIDIA/cccl>`_ 2.8.0 or higher


Optional Third-party Dependencies
Expand Down
2 changes: 1 addition & 1 deletion include/matx/operators/cov.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace matx
{
private:
typename detail::base_type_t<OpA> a_;
cuda::std::array<index_t, 2> out_dims_;
cuda::std::array<index_t, OpA::Rank()> out_dims_;
mutable detail::tensor_impl_t<typename remove_cvref_t<OpA>::value_type, OpA::Rank()> tmp_out_;
mutable typename remove_cvref_t<OpA>::value_type *ptr = nullptr;

Expand Down