-
Notifications
You must be signed in to change notification settings - Fork 770
[SYCL] Add sorting APIs for fixed-size private array input #14185
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
tag @andreyfe1 |
PR doesn't include key/value sorting with fixed-size array input which will be added in a separate PR.
a485b0e
to
28c732d
Compare
Co-authored-by: Dmitry Vodopyanov <[email protected]>
LGTM, @andreyfe1 can you please review? |
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 overall. Thanks!
sycl/include/sycl/ext/oneapi/experimental/group_helpers_sorters.hpp
Outdated
Show resolved
Hide resolved
|
||
template <group_algorithm_data_placement Placement> | ||
inline constexpr output_data_placement_key::value_t<Placement> | ||
output_data_placement; |
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.
We still have output_data_placement_key
and input_data_placement_key
in namespace sycl::ext::oneapi::experimental
.
Is it expected? What to do with 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.
This is expected, those ones are necessary for kernel properties functionality to work.
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.
So, we need to change the Spec accordingly, right?
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
These PR covers (1), (2), (3) from https://github.com/intel/llvm/blob/sycl/sycl/doc/extensions/proposed/sycl_ext_oneapi_group_sort.asciidoc#functions-with-fixed-size-arrays.
PR doesn't include key/value sorting with fixed-size array input which will be added in a separate PR.