-
Notifications
You must be signed in to change notification settings - Fork 195
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
[FEA] Reimplement submdspan
.
#501
Comments
This issue has been labeled |
I will work on this. |
* Derive the offset_policy from the mixin instead of the default accessor. Partially address #501 . Authors: - Jiaming Yuan (https://github.com/trivialfis) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: #628
This issue has been labeled |
This issue has been labeled |
Although the
mdspan
is designed to be flexible, there are limitations on how to integrate customized layouts and accessors. Themdspan
in raft is exposed viahost_mdspan
anddevice_mdspan
so the compiler can prevent us from making some simple mistakes. This customization is achieved by having an additional mixin with the default accessor. Also, in order to implement #497 we need customized layouts. Thesubmdspan
reference implementation doesn't support this kind of customization.The text was updated successfully, but these errors were encountered: