-
Notifications
You must be signed in to change notification settings - Fork 150
Updates needed when building with CUDA 13 #1219
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
Conversation
|
/merge |
|
|
||
| struct base_filter { | ||
| virtual ~base_filter() = default; | ||
| ~base_filter() = default; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Likely a silly question, but wouldn't this cause leaks or incorrect behaviour, if base_filter instances are deleted?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't see any derived types that had local storage. If we have any derived types that do have storage they would still be okay as long as they are deleted as the derived type. ( So no holding a vector of base_filter pointers and calling delete on that ).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed. I couldn't find that sort of thing either.
Thank you.
cuvs also requires rapidsai/raft#2774 to be merged Authors: - Robert Maynard (https://github.com/robertmaynard) - Corey J. Nolet (https://github.com/cjnolet) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: rapidsai#1219
cuvs also requires rapidsai/raft#2774 to be merged