-
Notifications
You must be signed in to change notification settings - Fork 197
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
[REVIEW] mdspan-ify make_regression #811
Conversation
Add an overload of make_regression that takes mdspan, instead of raw pointers. The overload does not increase generality (e.g., it still requires row-major mdspan). Part of rapidsai#535.
ab65a7c
to
95b475d
Compare
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.
Thanks for starting on the raft::random
namespace updates so quickly! Just a couple very minor things.
rerun tests |
1. Add new issue rapidsai#814 to capture observation that the make_regression test still passes even if the test doesn't call make_regression. 2. Remove stream from new make_regression interface, since the handle encapsulates the stream.
1b6103a
to
426a0f4
Compare
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. Thanks @mhoemmen!
rerun tests |
2 similar comments
rerun tests |
rerun tests |
@gpucibot merge |
1 similar comment
@gpucibot merge |
Add an overload of
make_regression
that takes mdspan, instead of raw pointers. The overload does not increase generality(e.g., it still requires row-major mdspan).
Part of #535.