Mlir opt
mlir_opt
MLIROptPass
dataclass
Bases: ModulePass
A pass for calling the mlir-opt tool with specified parameters. Will fail if
mlir-opt is not available.
Source code in xdsl/transforms/mlir_opt.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | |
name = 'mlir-opt'
class-attribute
instance-attribute
executable: str = field(default='mlir-opt')
class-attribute
instance-attribute
generic: bool = field(default=True)
class-attribute
instance-attribute
arguments: tuple[str, ...] = field(default=())
class-attribute
instance-attribute
__init__(executable: str = 'mlir-opt', generic: bool = True, arguments: tuple[str, ...] = ()) -> None
apply(ctx: Context, op: ModuleOp) -> None
Source code in xdsl/transforms/mlir_opt.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | |