[Mlir-commits] [mlir] 5be4fc2 - [mlir][Arith] arith.select doesn't need to be emulated for small floats (#161707)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Oct 2 11:49:52 PDT 2025
Author: Krzysztof Drewniak
Date: 2025-10-02T13:49:48-05:00
New Revision: 5be4fc24a748514a0e51c408da11d0544ebf3811
URL: https://github.com/llvm/llvm-project/commit/5be4fc24a748514a0e51c408da11d0544ebf3811
DIFF: https://github.com/llvm/llvm-project/commit/5be4fc24a748514a0e51c408da11d0544ebf3811.diff
LOG: [mlir][Arith] arith.select doesn't need to be emulated for small floats (#161707)
arith.select isn't an arithmetic operation in the sense of things like
addf or mulf, which the emulate-unsupported-floats rewrites using extf
and truncf.
This patch adds select as a legal operation to prevent a pointless
conversion aronud conditional moves.
Fixes https://github.com/iree-org/iree/issues/22181
Added:
Modified:
mlir/lib/Dialect/Arith/Transforms/EmulateUnsupportedFloats.cpp
mlir/test/Dialect/Arith/emulate-unsupported-floats.mlir
Removed:
################################################################################
diff --git a/mlir/lib/Dialect/Arith/Transforms/EmulateUnsupportedFloats.cpp b/mlir/lib/Dialect/Arith/Transforms/EmulateUnsupportedFloats.cpp
index 7626d356a37f2..c64e10f534f8e 100644
--- a/mlir/lib/Dialect/Arith/Transforms/EmulateUnsupportedFloats.cpp
+++ b/mlir/lib/Dialect/Arith/Transforms/EmulateUnsupportedFloats.cpp
@@ -123,7 +123,8 @@ void mlir::arith::populateEmulateUnsupportedFloatsLegality(
vector::OuterProductOp, vector::ScanOp>(
[&](Operation *op) { return converter.isLegal(op); });
target.addLegalOp<arith::BitcastOp, arith::ExtFOp, arith::TruncFOp,
- arith::ConstantOp, vector::SplatOp, vector::BroadcastOp>();
+ arith::ConstantOp, arith::SelectOp, vector::SplatOp,
+ vector::BroadcastOp>();
}
void EmulateUnsupportedFloatsPass::runOnOperation() {
diff --git a/mlir/test/Dialect/Arith/emulate-unsupported-floats.mlir b/mlir/test/Dialect/Arith/emulate-unsupported-floats.mlir
index 99790cc45d490..fcd004ac554aa 100644
--- a/mlir/test/Dialect/Arith/emulate-unsupported-floats.mlir
+++ b/mlir/test/Dialect/Arith/emulate-unsupported-floats.mlir
@@ -85,3 +85,14 @@ func.func @no_expansion(%x: f32) -> f32 {
%y = arith.addf %x, %c : f32
func.return %y : f32
}
+
+// -----
+
+func.func @no_promote_select(%c: i1, %x: bf16, %y: bf16) -> bf16 {
+// CHECK-LABEL: @no_promote_select
+// CHECK-SAME: (%[[C:.+]]: i1, %[[X:.+]]: bf16, %[[Y:.+]]: bf16)
+// CHECK: %[[Z:.+]] = arith.select %[[C]], %[[X]], %[[Y]] : bf16
+// CHECK: return %[[Z]]
+ %z = arith.select %c, %x, %y : bf16
+ func.return %z : bf16
+}
More information about the Mlir-commits
mailing list