-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ARITH] Analyzer Infra, ConstIntBound, Modular #2668
Conversation
@were @ZihengJiang @sgrechanik-h @masahi @merrymercy please help review this PR |
@junrushao1994 can you help to take a look as well? |
/*! \brief Number to represent +inf */ | ||
static const constexpr int64_t kPosInf = std::numeric_limits<int64_t>::max(); | ||
/*! \brief Number to represent -inf */ | ||
static const constexpr int64_t kNegInf = -kPosInf; |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to make sure -kPosInf == kNegInf
@junrushao1994, please https://docs.tvm.ai/contribute/code_review.html#approve-and-request-changes-explicitly, @derisavi @grwlf can you also help to take a look? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I took another look tonight, and felt good that finally we have this infra 👍
@were might be interested |
Thanks, @junrushao1994 , this is now merged |
This PR contains one step of #2588