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

Don't use deduplicated predecessors in mapper-created duplication check #589

Merged
merged 2 commits into from
Apr 2, 2025

Conversation

majosm
Copy link
Collaborator

@majosm majosm commented Mar 24, 2025

DirectPredecessorsGetter returns a deduplicated set of predecessors, which causes problems with the "mapper-created duplication" check in TransformMapper. Example: Suppose an IndexLambda has two bindings that are duplicates of each other. When applying a mapper that deduplicates the DAG, such as CopyMapper, the recursion will deduplicate these two arrays, which means that a new IndexLambda must be created. This should not trigger the mapper-created duplicate error, because it should see that one of the predecessors has changed. However because DirectPredecessorsGetter deduplicates internally (by virtue of returning a FrozenOrderedSet), it will report that the IndexLambda has only one predecessor. Subsequently, the duplication check won't see that a predecessor has changed, and it will trigger the error.

This change adds a ListOfDirectPredecessorsGetter that returns a list instead of a set and uses that to implement the duplication check.

@majosm majosm force-pushed the fix-duplication-check branch 2 times, most recently from 6ef2868 to 8ceeab7 Compare March 24, 2025 22:09
@majosm majosm requested a review from inducer March 24, 2025 22:28
Copy link
Owner

@inducer inducer left a comment

Choose a reason for hiding this comment

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

A few simple things, then this is ready to go.

majosm added 2 commits April 2, 2025 14:58
add comment explaining use of NonUniqueDirectPredecessorsGetter

rename NonUniqueDirectPredecessorsGetter -> ListOfDirectPredecessorsGetter

make DirectPredecessorsGetter not a Mapper

fix docstrings
add section comment thing
@inducer inducer force-pushed the fix-duplication-check branch from d381d6c to 533030b Compare April 2, 2025 19:59
@inducer inducer enabled auto-merge (rebase) April 2, 2025 19:59
@inducer inducer merged commit 84d18aa into inducer:main Apr 2, 2025
11 checks passed
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