template<typename ConcreteType>
class mlir::OpTrait::AttrSizedOperandSegments< ConcreteType >
A trait for operations that have an attribute specifying operand segments.
Certain operations can have multiple variadic operands and their size relationship is not always known statically. For such cases, we need a per-op-instance specification to divide the operands into logical groups or segments. This can be modeled by attributes. The attribute will be named as operand_segment_sizes
.
This trait verifies the attribute for specifying operand segments has the correct type (1D vector) and values (non-negative), etc.