-
Notifications
You must be signed in to change notification settings - Fork 743
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
[SYCL][Graph] Fix CUDA/HIP local mem argument update bug #16025
base: sycl
Are you sure you want to change the base?
Conversation
5b0b1d0
to
731cdc0
Compare
731cdc0
to
c30fc25
Compare
c30fc25
to
2771f66
Compare
2771f66
to
8429c05
Compare
8429c05
to
a5f439c
Compare
a5f439c
to
598e0a9
Compare
598e0a9
to
9ce1cc4
Compare
Tests UR PR oneapi-src/unified-runtime#2298 with additional SYCL-Graph local memory argument E2E tests. PR also sets the `pnext` and `snext` members of `ur_exp_command_buffer_update_kernel_launch_desc_t ` which were missing when calling into UR.
9ce1cc4
to
b6e03ad
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.
Not related to the changes but why does this test have
using T = int
on line 9?
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.
Okay, I can see the other tests also use that. I guess it's convenient
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.
Good question, it's in a lot of our tests. The idea we that it makes it easier to test with different input/output types if we want. However, I don't think that hypothetical advantage has ever been taken advantage of.
Thinking about it, it might make more sense to put this in the graph_common.hpp
header and let individual tests use it if they want.
Tests UR PR oneapi-src/unified-runtime#2298 with additional SYCL-Graph local memory argument E2E tests.
PR also sets the
pnext
andsnext
members ofur_exp_command_buffer_update_kernel_launch_desc_t
which were missing when calling into UR.