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
We have some common pattern like max(min(x, -128),127) to quantize a value to int8_t in AI.
And these two patterns should be the same: max(min(x, -128),127), min(max(x, -128), 127)
Maybe we can add a pattern for it?