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
I believe this slides say "std" for the standard MLIR dialects like SCF, MemRef, Math, Arith,...
In general, we have a few Krnl operations that are lowered late; most are lowered during the krnl-to-affine but a few are lowered later, up to lowering to LLVM.
That is the standard path that we use here. If you want to hook it up to MLIR to continue optimizations there, you may have a few paths; TOSA or StableHLO which takes ONNX dialects to these, which can then be moved to MLIR. Potentially, you can also pick up some of our lowering patterns for KRNL and applying them in a different order. You are welcome to experiment, and changes could be integrated under a different --EmitXXX option (see onnx-mlir -help for the emit target that we currently support).
The text was updated successfully, but these errors were encountered: