PassManager¶
- class onnx_ir.passes.PassManager(passes, steps=1, early_stop=True)¶
Pass manager for the IR.
The PassManager is a Pass that runs a sequence of passes on a model.
- passes¶
The passes to run.
- steps¶
The number of times to run the passes.
- early_stop¶
Whether to stop running the passes if the graph stops changing.