-
Notifications
You must be signed in to change notification settings - Fork 282
add a specialization of __make_tuple_types
for complex<T>
#6102
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
add a specialization of __make_tuple_types
for complex<T>
#6102
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
/ok to test f05eb74 |
/ok to test 8714a5f |
This comment has been minimized.
This comment has been minimized.
/ok to test |
/ok to test |
/ok to test |
🥳 CI Workflow Results🟩 Finished in 4h 46m: Pass: 100%/242 | Total: 10d 12h | Max: 4h 44m | Hits: 31%/304335See results here. |
Backport failed for Please cherry-pick the changes locally and resolve any conflicts. git fetch origin branch/3.0.x
git worktree add -d .worktree/backport-6102-to-branch/3.0.x origin/branch/3.0.x
cd .worktree/backport-6102-to-branch/3.0.x
git switch --create backport-6102-to-branch/3.0.x
git cherry-pick -x 7ed0f91a4fb1dfb897fd7c0511e511c8d7dffc5e |
Love it. Kept it in the commit message 👍 |
Backport failed for Please cherry-pick the changes locally and resolve any conflicts. git fetch origin branch/3.1.x
git worktree add -d .worktree/backport-6102-to-branch/3.1.x origin/branch/3.1.x
cd .worktree/backport-6102-to-branch/3.1.x
git switch --create backport-6102-to-branch/3.1.x
git cherry-pick -x 7ed0f91a4fb1dfb897fd7c0511e511c8d7dffc5e |
…omplex<T>` (NVIDIA#6102) (cherry picked from commit 7ed0f91)
…omplex<T>` (NVIDIA#6102) (cherry picked from commit 7ed0f91)
## Description <!-- Provide a standalone description of changes in this PR. --> Backport bump of CCCL to 3.0.3 to include NVIDIA/cccl#4796 and NVIDIA/cccl#6102 <!-- Reference any issues closed by this PR with "closes #1234". --> <!-- Note: The pull request title will be included in the CHANGELOG. --> ## Checklist - [x] I am familiar with the [Contributing Guidelines](https://github.com/rapidsai/rapids-cmake/blob/HEAD/CONTRIBUTING.md). - [x] New or existing tests cover these changes. - [x] The documentation is up to date with these changes. - [x] The `cmake-format.json` is up to date with these changes. - [ ] I have added new files under rapids-cmake/ - [ ] I have added include guards (`include_guard(GLOBAL)`) - [ ] I have added the associated docs/ rst file and update the api.rst cc @manopapad
Description
closes #6078
recently
cuda::std::complex
got thetuple
treatment. but__make_tuple_types
was not updated to handlecomplex
special, like it does forcuda::std::array
. this PR fixes that.Checklist