Skip to content
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

[HAL] Add option to disable executable linking #19028

Merged
merged 3 commits into from
Dec 2, 2024

Conversation

qedawkins
Copy link
Contributor

This is useful because without disabling linking,
--iree-hal-dump-executable-binaries-to and
--iree-hal-dump-executable-intermediates-to will dump a single large linked file rather than one file per executable.

This is expected to only ever be used for development/debugging purposes.

@qedawkins qedawkins requested a review from benvanik as a code owner November 5, 2024 15:16
Copy link
Collaborator

@benvanik benvanik left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm bool flags with "disable" or "enable" in the name are odd (I don't love that they have spread in codegen/flow as much as they have) - a bool true implies enable and bool false implies disable. The annoying part of iree-opt is that pass names are flags so we can't make this what would be best (--iree-hal-link-executables=true to link by default and --iree-hal-link-executables=false to not link as an override).

We can rename the pass though - there's LinkExecutablesPass and LinkTargetExecutablesPass - we could make that LinkAllExecutablesPass and LinkTargetExecutablesPass so the pass name becomes --iree-hal-link-all-executables and then we have the iree-hal-link-executables flag name available for use.
I've meant to do this with the other passes of the same style (SerializeExecutablesPass -> SerializeAllExecutablesPass, TranslateExecutablesPass -> TranslateAllExecutablesPass) since I originally split them up so it'd be good cleanup. If you can find/replace those here then we can use that flag right away, otherwise I can send a PR to do that.

@qedawkins
Copy link
Contributor Author

Yeah I wasn't sure what to name it so I just picked something. I can change the LinkExecutablesPass here unless you prefer to change all pass names at the same time.

@benvanik
Copy link
Collaborator

benvanik commented Nov 5, 2024

if you can do em all that'd be nice - just 3 find/replace instead of 1 (no need to change file names, just pass .td/C++ class name).

This is useful because without disabling linking,
`--iree-hal-dump-executable-binaries-to` and
`--iree-hal-dump-executable-intermediates-to` will dump a single large
linked file rather than one file per executable.

This is expected to only ever be used for development/debugging
purposes.
@qedawkins qedawkins force-pushed the disable_linking_flag branch from fc794a8 to fee1701 Compare November 8, 2024 15:02
@qedawkins qedawkins requested a review from ScottTodd as a code owner November 8, 2024 15:02
@qedawkins qedawkins requested a review from benvanik November 8, 2024 15:02
@@ -475,8 +485,9 @@ void buildHALTransformPassPipeline(OpPassManager &passManager,
// example, the LLVM AOT backend may combine all executable targets for the
// same architecture into a single executable and link it as a shared
// library.
if (transformOptions.linkExecutables) {
passManager.addPass(IREE::HAL::createLinkExecutablesPass({targetRegistry}));
if (transformOptions.linkExecutables && clLinkExecutables) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is strange to me that this is && but if it isn't then to disable linking we'd have to plumb through another flag for the transform option and disable that too. I think it's fine because linking should pretty much always be on but if there are any other suggestions.

@qedawkins
Copy link
Contributor Author

qedawkins commented Nov 8, 2024

Ok I accidentally turned off linking by default, but it looks like there are some test failures with it off: https://github.com/iree-org/iree/actions/runs/11744495978/job/32719757104?pr=19028

May want to look into that at some point.

Copy link
Collaborator

@benvanik benvanik left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that there are failures with this is concerning, but since it's a developer flag it's fine for now (until you or someone using it hits an issue and needs to fix it :)

@qedawkins qedawkins merged commit f2abfa8 into iree-org:main Dec 2, 2024
36 checks passed
@qedawkins qedawkins deleted the disable_linking_flag branch December 2, 2024 16:45
giacs-epic pushed a commit to giacs-epic/iree that referenced this pull request Dec 4, 2024
This is useful because without disabling linking,
`--iree-hal-dump-executable-binaries-to` and
`--iree-hal-dump-executable-intermediates-to` will dump a single large
linked file rather than one file per executable.

This is expected to only ever be used for development/debugging
purposes.

Signed-off-by: Giacomo Serafini <179146510+giacs-epic@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants