-
Notifications
You must be signed in to change notification settings - Fork 304
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
C API for renumbering the samples #3724
Conversation
std::optional<rmm::device_uvector<vertex_t>> renumber_map{std::nullopt}; | ||
std::optional<rmm::device_uvector<size_t>> renumber_map_offsets{std::nullopt}; | ||
|
||
#if 0 |
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 assume this is disabled pending Seunghwa's PR getting merged?
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.
Yes. Just pushed an update with a version of Seunghwa's branch merged in (not the latest).
edge_label->size()}, | ||
raft::device_span<size_t const>{offsets->data(), | ||
offsets->size()})) | ||
do_expensive_check); |
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.
do_expensive_check); | |
,do_expensive_check_); |
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.
Fixed once I debugged :-)
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.
Tested, working 👍
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.
LGTM.
/merge |
Definition of C API for renumbering of sampling results.