[Mlir-commits] [mlir] [mlir][arith] doc updates for ub semantics, and int representations (PR #72932)
Mehdi Amini
llvmlistbot at llvm.org
Mon Nov 20 21:50:42 PST 2023
================
@@ -198,7 +198,9 @@ def Arith_AddIOp : Arith_TotalIntBinaryOp<"addi", [Commutative]> {
The `addi` operation takes two operands and returns one result, each of
these is required to be the same type. This type may be an integer scalar
type, a vector whose element type is integer, or a tensor of integers. It
- has no standard attributes.
+ has no standard attributes. If an overflow occurs, the result is the
+ mathematical value of the addition modulo 2^n, where `n` is the width of
+ the integer type.
----------------
joker-eph wrote:
I don't believe we've been defining an overflow behavior. This may be the best thing to do, but it's not clear to me that it is "defined" so far?
https://github.com/llvm/llvm-project/pull/72932
More information about the Mlir-commits
mailing list