-
Notifications
You must be signed in to change notification settings - Fork 738
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] Rename sycl-fusion to sycl-jit #14762
Conversation
c0d72f5
to
fb7958d
Compare
920b0c3
to
da0674e
Compare
da0674e
to
544f175
Compare
This is a follow up from the #14280 where the library/directory rename was discussed. |
This patch renames the directory (`sycl-fusion` to `sycl-jit`) as well as the involved library names (following the same principle: `fusion` to `jit`). To keep the user facing names consistent buildbot switches were updated. And finally the codeowners file had to reflect the directory change.
Code formatting is failing bad for this patch, but I'm not sure if it should be trusted, seems like it's in python files which have never been formatted in the first place, for instance conifgure.py. |
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.
One minor nit about capitalization.
There's also a few things missing that should be renamed, e.g., the CMake option SYCL_ENABLE_KERNEL_FUSION
and related options. Potentially also macros should be renamed, while preserving feature test macros from the extension with the name specified by the extension.
sycl-jit/passes/CMakeLists.txt
Outdated
@@ -1,5 +1,5 @@ | |||
# Module library for usage as library/pass-plugin with LLVM opt. | |||
add_llvm_library(SYCLKernelFusion MODULE | |||
add_llvm_library(SYCLKernelJit MODULE |
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.
Should we maintain capitalization of "JIT" here, i.e., SYCLKernelJIT
?
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.
Agreed, will apply the same logic to SYCLKerneJitPasses
.
f8f2272
to
1608b4b
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.
Change to Getting Started Guide LGTM.
This patch renames the directory (
sycl-fusion
tosycl-jit
) as wellas the involved library names (following the same principle:
fusion
tojit
).To keep the user facing names consistent buildbot switches were updated.
And finally the codeowners file had to reflect the directory change.