You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
regehr
changed the title
constraint elimination not adding a signed constraint
constraint elimination should understand the (x<0)&&(y<0) => (x|y)<0 canonicalization
Nov 29, 2024
regehr
changed the title
constraint elimination should understand the (x<0)&&(y<0) => (x|y)<0 canonicalization
constraint elimination should understand the (x<0)||(y<0) => (x|y)<0 canonicalization
Nov 29, 2024
here's a function:
at present, we're not optimizing this away. the IR is:
constraint elimination is correctly learning that
!(%0 < 0)
but I guess we need a little recognizer for the(x<0)||(y<0) => (x|y)<0
canonicalizationcc @fhahn @dtcxzyw
The text was updated successfully, but these errors were encountered: