-
Notifications
You must be signed in to change notification settings - Fork 104
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
Add Sycl Scan Algorithm #1776
base: develop
Are you sure you want to change the base?
Add Sycl Scan Algorithm #1776
Conversation
…into feature/long58/sycl_scan_sort
…into feature/long58/sycl_scan_sort
auto buffAccessor = buffPtr->get_access(cgh); | ||
auto tempAccessor = tempPtr->get_access(cgh); |
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'm not familiar with how sycl::buffer objects work, do they make a copy of the data?
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.
If the data is already on the device, then no, otherwise yes, it will copy from the host to the device and synchronize them automatically when changes are made to one or the other.
Summary
Fulfills #1669. This PR implements a parallel scan algorithm in Sycl.