-
Notifications
You must be signed in to change notification settings - Fork 7
Fix Issue 1502 #1503
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
Fix Issue 1502 #1503
Conversation
Replace FusionViewFailPersistent with FusionViewPersistentShmoo
…w_rfactor_symbol_fix
void replaceValue( | ||
Fusion* fusion, | ||
const std::unordered_map<Val*, Val*>& replacement_map) { | ||
ValReplacementMutator(fusion, replacement_map); | ||
} |
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.
This seems like a generic function that's not specific to size replacement. Why not move this somewhere else? Perhaps, ir_utils?
Update on this PR?! @rdspring1 |
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.
Thanks for updating the PR. LGTM.
Fixes #1502
During
convertRfactorToRootDomain
, we need to propagate the replacement extents throughout the entire fusion. Currently, we only update the expressions that use theview
TensorView.