-
Notifications
You must be signed in to change notification settings - Fork 792
[SYCL] Relax linking workaround and test SYCL interlinking #19171
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] Relax linking workaround and test SYCL interlinking #19171
Conversation
This commit removes a workaround for linking inline SYCL code with SYCLBIN. Additionally, it relaxes the requirement for dependency resolution when device images are looked up for anything other than executable state, avoiding errors when the symbol resolution is done manually. Signed-off-by: Larsen, Steffen <[email protected]>
648af12
to
b45a7bb
Compare
Signed-off-by: Larsen, Steffen <[email protected]>
Signed-off-by: Larsen, Steffen <[email protected]>
Signed-off-by: Larsen, Steffen <[email protected]>
Signed-off-by: Larsen, Steffen <[email protected]>
Signed-off-by: Larsen, Steffen <[email protected]>
Signed-off-by: Larsen, Steffen <[email protected]>
@steffenlarsen hi, looks like this patch broke sycl_cts/test_kernel_bundle, see https://github.com/intel/llvm/actions/runs/16065148172 |
Thanks for making me aware! I will have a look immediately. Edit: #19318 should address the issue, although I believe it is actually a test problem. I will report the issue on the CTS as well. |
This commit relaxes a workaround for linking inline SYCL code with SYCLBIN. That is, instead of separating all offline images into separate linking, it instead separates all binaries with specialization constants into their own linking runs. Additionally, it relaxes the requirement for dependency resolution when device images are looked up for anything other than executable state, avoiding errors when the symbol resolution is done manually.