-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
[MLIR] scf-forall-to-for
pass triggers Segmentation Fault.
#130015
Comments
@llvm/issue-subscribers-mlir Author: None (RiRi114)
Test on commit: 0f9720a
steps to reproduce: test case: module {
func.func @<!-- -->example_function(%upper_bound: index) {
scf.forall (%i) in (%upper_bound) {
// Possible processing can happen here, like a function call or operation
// Here's a sample operation for illustration
affine.yield %i : index
}
return
}
} crash trace:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Test on commit: 0f9720a
steps to reproduce:
mlir-opt temp.mlir -pass-pipeline='builtin.module(func.func(scf-forall-to-for))'
test case:
crash trace:
The text was updated successfully, but these errors were encountered: