[Mlir-commits] [mlir] [MLIR][Transforms] add eliminate-explicit-rounding pass (PR #93443)

Krzysztof Drewniak llvmlistbot at llvm.org
Fri Jun 7 12:35:10 PDT 2024


================
@@ -1410,6 +1410,39 @@ bool arith::ExtFOp::areCastCompatible(TypeRange inputs, TypeRange outputs) {
 
 LogicalResult arith::ExtFOp::verify() { return verifyExtOp<FloatType>(*this); }
 
+struct SimplifyExtFTruncFOpPair : public OpRewritePattern<ExtFOp> {
----------------
krzysz00 wrote:

Folders run much more often and are meant to be for things that are like constant-folding: fast, local, and unconditionally useful.

https://github.com/llvm/llvm-project/pull/93443


More information about the Mlir-commits mailing list