[opt] Automatically skip known-no-op passes in pipelines#4036
Draft
copybara-service[bot] wants to merge 1 commit intomainfrom
Draft
[opt] Automatically skip known-no-op passes in pipelines#4036copybara-service[bot] wants to merge 1 commit intomainfrom
copybara-service[bot] wants to merge 1 commit intomainfrom
Conversation
If a pass is invoked twice on the same IR, and made no changes the first time, then we know it should make no changes the second time. Rather than rerunning the pass and any associated analyses, we can skip this entirely. To support this, we add the `GetInvocationSignature` method to `PassBase`, so passes can declare a unique signature including any options that affect how the pass runs. Any pass that does not declare an invocation signature will run every time. Certain passes are idempotent, meaning that if they're invoked twice in sequence, the second invocation will *always* be a no-op. We add the `IsIdempotent` method to let these passes opt into this stronger behavior. PiperOrigin-RevId: 879744536
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
[opt] Automatically skip known-no-op passes in pipelines
If a pass is invoked twice on the same IR, and made no changes the first time, then we know it should make no changes the second time. Rather than rerunning the pass and any associated analyses, we can skip this entirely.
To support this, we add the
GetInvocationSignaturemethod toPassBase, so passes can declare a unique signature including any options that affect how the pass runs. Any pass that does not declare an invocation signature will run every time.Certain passes are idempotent, meaning that if they're invoked twice in sequence, the second invocation will always be a no-op. We add the
IsIdempotentmethod to let these passes opt into this stronger behavior.