-
Notifications
You must be signed in to change notification settings - Fork 653
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
dominance-related failure occurs when compiling an opt model #17759
Comments
It usually indicates that we don't set insertion point before creating an operation. @IanWood1 could help with this? I think you have some context about |
Oh crap... I havent touched that pass in ages. |
it seems like horizontal fusion is moving ops into the region that have uses before |
When preforming horizontal fusion, ops that were clonable (but not used by the fusion group) were ignored. If these ops were dependent on values produced by 'root ops', then the root op would get moved into the region. Closes iree-org#17759 Signed-off-by: Ian Wood <ianwood2024@u.northwestern.edu> Signed-off-by: Lubo Litchev <lubol@google.com>
What happened?
This error came from testing the
/onnx/models/opt-125M-vaiq
model in https://github.com/nod-ai/SHARK-TestSuite:Steps to reproduce your issue
Download a smaller reproducer from this gist, then run
This will result in the error message:
It seems to be failing on the pass
iree-flow-form-scalar-dispatches
. Here is the dump after failure:What component(s) does this issue relate to?
Compiler
Version information
using a local build at commit 3b5d269
Additional context
No response
The text was updated successfully, but these errors were encountered: