-
Notifications
You must be signed in to change notification settings - Fork 769
[Driver][SYCL] Enable multi-file for AOT #3609
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
When dealing with AOT compilations, we explicitly turned off multi-file processing. This behavior was preventing kernel name table generation. This effectively makes multi-file the default for all modes.
/summary:run |
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.
The implementation LGTM - still, I'd appreciate if @kbobrovs could take a look as well.
@mdtoguchi, can you please resolve CI failure, resolve merge conflict and proceed with asking for a review as soon as possible? |
types::ID PostLinkOutType = isNVPTX || !MultiFileActionDeps | ||
? types::TY_LLVM_BC | ||
: types::TY_Tempfiletable; | ||
types::ID PostLinkOutType = |
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.
please update the picture and the doc
When dealing with AOT compilations, we explicitly turned off multi-file
processing. This behavior was preventing kernel name table generation.
This effectively makes multi-file the default for all modes.