[Mlir-commits] [mlir] [MLIR] Introduce a SelectLikeOpInterface (PR #104751)
Christian Ulmann
llvmlistbot at llvm.org
Mon Aug 19 08:45:08 PDT 2024
================
@@ -343,6 +343,27 @@ def RegionBranchTerminatorOpInterface :
}];
}
+def SelectLikeOpInterface : OpInterface<"SelectLikeOpInterface"> {
+ let description = [{
+ This interface provides information for select-like operations, i.e.,
+ operations that forward specific operands to the output, depending on a
----------------
Dinistro wrote:
Attempted to address this by restricting the semantics to fit LLVM's and arith dialect's select instruction/operation.
https://github.com/llvm/llvm-project/pull/104751
More information about the Mlir-commits
mailing list