mlir.dialects.transform.interpreter¶
Attributes¶
Functions¶
|
Applies the transformation script starting at the given transform root |
|
Copies symbols from other into target, renaming private symbols to avoid |
Package Contents¶
- mlir.dialects.transform.interpreter.TransformOptions¶
- mlir.dialects.transform.interpreter._unpack_operation(op)¶
- mlir.dialects.transform.interpreter.apply_named_sequence(payload_root, transform_root, transform_module, transform_options=None)¶
Applies the transformation script starting at the given transform root operation to the given payload operation. The module containing the transform root as well as the transform options should be provided. The transform operation must implement TransformOpInterface and the module must be a ModuleOp.
- mlir.dialects.transform.interpreter.copy_symbols_and_merge_into(target, other)¶
Copies symbols from other into target, renaming private symbols to avoid duplicates. Raises an error if copying would lead to duplicate public symbols.