You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, the recent changes to MLIR requires us to add the concept of core/standard dialects. This is in progress for func, and will be done for the rest as well. I have a bit of high overhead at the moment so I will not be able to make the necessary changes very soon. Any PRs are welcome!
The generated MLIR does not have dialect specification. For example, tests/test_builder.py generates instructions without dialect (as shown below):
func -> should be -> func.func
constant -> should be -> arith.constant
This causes issues when I use this output with llvm tools (mlir-opt or mlir-translate). They complain about not recognizing "func" or "constant".
The text was updated successfully, but these errors were encountered: