Skip to content

Commit 2926677

Browse files
committed
Update to CCCL 2.8.0 (#895)
* Update to CCCL 2.8.0 * Fixed out-of-bounds bug in cov
1 parent 214c854 commit 2926677

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cmake/versions.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"packages": {
33
"CCCL": {
4-
"version": "2.7.0-patch",
4+
"version": "2.8.0",
55
"git_shallow": false,
66
"git_url": "https://github.com/NVIDIA/cccl.git",
7-
"git_tag": "cbc6b9b"
7+
"git_tag": "6d02e11"
88
},
99
"nvbench" : {
1010
"version" : "0.0",

docs_input/build.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ for supported host compilers. Other requirements for optional components are lis
2727
Required Third-party Dependencies
2828
---------------------------------
2929

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

3232

3333
Optional Third-party Dependencies

include/matx/operators/cov.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace matx
4545
{
4646
private:
4747
typename detail::base_type_t<OpA> a_;
48-
cuda::std::array<index_t, 2> out_dims_;
48+
cuda::std::array<index_t, OpA::Rank()> out_dims_;
4949
mutable detail::tensor_impl_t<typename remove_cvref_t<OpA>::value_type, OpA::Rank()> tmp_out_;
5050
mutable typename remove_cvref_t<OpA>::value_type *ptr = nullptr;
5151

0 commit comments

Comments
 (0)