Files
llvm-project/mlir
Hank e1b9d033cd [MLIR][Math] Fix math.ceil expansion to avoid undefined behavior on Inf/NaN (#170028)
Fixes #151786

The original `ceilf` expansion lowers to `fptosi`, which produces poison
for Inf, and any subsequent use leads to undefined behavior. This patch
adds a safe path, similar to the existing `round` expansion, for large
or special inputs and avoids the UB.
2026-02-11 12:36:32 -05:00
..

Multi-Level Intermediate Representation

See https://mlir.llvm.org/ for more information.