mlir.dialects._builtin_ops_gen

Attributes

Classes

_Dialect

ModuleOp

A module represents a top-level container operation. It contains a single

UnrealizedConversionCastOp

An unrealized_conversion_cast operation represents an unrealized

Functions

module(→ ModuleOp)

unrealized_conversion_cast(→ Union[_ods_ir, _ods_ir, ...)

Module Contents

mlir.dialects._builtin_ops_gen._ods_ir
class mlir.dialects._builtin_ops_gen._Dialect(descriptor: object)

Bases: _ods_ir

DIALECT_NAMESPACE = 'builtin'
class mlir.dialects._builtin_ops_gen.ModuleOp(*, sym_name=None, sym_visibility=None, loc=None, ip=None)

Bases: _ods_ir

A module represents a top-level container operation. It contains a single graph region containing a single block which can contain any operations and does not have a terminator. Operations within this region cannot implicitly capture values defined outside the module, i.e. Modules are IsolatedFromAbove. Modules have an optional symbol name which can be used to refer to them in operations.

Example:

module {
  func.func @foo()
}
OPERATION_NAME = 'builtin.module'
_ODS_REGIONS = (1, True)
sym_name() _ods_ir | None
sym_visibility() _ods_ir | None
bodyRegion() _ods_ir
mlir.dialects._builtin_ops_gen.module(*, sym_name=None, sym_visibility=None, loc=None, ip=None) ModuleOp
class mlir.dialects._builtin_ops_gen.UnrealizedConversionCastOp(outputs, inputs, *, loc=None, ip=None)

Bases: _ods_ir

An unrealized_conversion_cast operation represents an unrealized conversion from one set of types to another, that is used to enable the inter-mixing of different type systems. This operation should not be attributed any special representational or execution semantics, and is generally only intended to be used to satisfy the temporary intermixing of type systems during the conversion of one type system to another.

This operation may produce results of arity 1-N, and accept as input operands of arity 0-N.

Example:

// An unrealized 0-1 conversion. These types of conversions are useful in
// cases where a type is removed from the type system, but not all uses have
// been converted. For example, imagine we have a tuple type that is
// expanded to its element types. If only some uses of an empty tuple type
// instance are converted we still need an instance of the tuple type, but
// have no inputs to the unrealized conversion.
%result = unrealized_conversion_cast to !bar.tuple_type<>

// An unrealized 1-1 conversion.
%result1 = unrealized_conversion_cast %operand : !foo.type to !bar.lowered_type

// An unrealized 1-N conversion.
%results2:2 = unrealized_conversion_cast %tuple_operand : !foo.tuple_type<!foo.type, !foo.type> to !foo.type, !foo.type

// An unrealized N-1 conversion.
%result3 = unrealized_conversion_cast %operand, %operand : !foo.type, !foo.type to !bar.tuple_type<!foo.type, !foo.type>
OPERATION_NAME = 'builtin.unrealized_conversion_cast'
_ODS_REGIONS = (0, True)
inputs() _ods_ir
outputs() _ods_ir
mlir.dialects._builtin_ops_gen.unrealized_conversion_cast(outputs, inputs, *, loc=None, ip=None) _ods_ir | _ods_ir | UnrealizedConversionCastOp