You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the shape inference pass (#1594) used by the frontend supports the RegionBranchControlFlow interfaces (e.g., scf, affine, etc) but not the other interfaces defined in MLIR's ControlFlowInterfaces.h (e.g., the ones used by cf).
It also does not support other region-bearing ops that have a mapping between operands and block arguments (e.g., secret.generic or linalg.generic).
For other ops, it currently also only supports InferTypeOpInterface but not other interfaces that might be relevant, such as ReifyRankedShapedTypeOpInterface or LinalgStructuredInterface used by linalg ops.
The text was updated successfully, but these errors were encountered:
the shape inference pass (#1594) used by the frontend supports the
RegionBranchControlFlow
interfaces (e.g.,scf
,affine
, etc) but not the other interfaces defined in MLIR's ControlFlowInterfaces.h (e.g., the ones used bycf
).It also does not support other region-bearing ops that have a mapping between operands and block arguments (e.g.,
secret.generic
orlinalg.generic
).For other ops, it currently also only supports
InferTypeOpInterface
but not other interfaces that might be relevant, such asReifyRankedShapedTypeOpInterface
orLinalgStructuredInterface
used bylinalg
ops.The text was updated successfully, but these errors were encountered: