This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from mlir.ir import * | |
| from mlir.dialects.ext import * | |
| from mlir.rewrite import * | |
| from mlir.passmanager import * | |
| from mlir.execution_engine import * | |
| from mlir.dialects import llvm, scf, func | |
| class BfDialect(Dialect, name="bf"): | |
| pass |