[Mosaic GPU] Add layout inference for arith.Ext{F,SI,UI}Op and arith.Trunc{F,I}Op.

PiperOrigin-RevId: 730851596
This commit is contained in:
Benjamin Chetioui 2025-02-25 05:58:58 -08:00 committed by jax authors
parent 6f966397e0
commit 5312b5e35a

View File

@ -243,6 +243,7 @@ for op in [
arith.AndIOp,
arith.CmpFOp,
arith.CmpIOp,
arith.ExtFOp, arith.ExtSIOp, arith.ExtUIOp,
arith.MaximumFOp,
arith.MaxUIOp, arith.MaxSIOp,
arith.MinimumFOp,
@ -252,6 +253,7 @@ for op in [
arith.FloorDivSIOp, arith.DivUIOp, arith.DivFOp,
arith.RemUIOp, arith.RemSIOp, arith.RemFOp,
arith.SubIOp, arith.SubFOp,
arith.TruncFOp, arith.TruncIOp,
arith.XOrIOp,
vector.LoadOp,
vector.StoreOp,