ANSHUMAN87 commented on a change in pull request #5788:
URL: https://github.com/apache/incubator-tvm/pull/5788#discussion_r439848026
##########
File path: src/arith/rewrite_simplify.cc
##########
@@ -123,7 +123,7 @@ PrimExpr RewriteSimplifier::Impl::VisitExpr_(const AddNode*
op) {
// Pattern var to match any expression
PVar<PrimExpr> x, y, z, b1, b2, s1, s2;
// Pattern var match IntImm
- PVar<IntImm> c1, c2, c3;
+ PVarOpt<Optional<IntImm>> c1, c2, c3;
Review comment:
I have 2 possible approach here:
A0: Rename PVarOpt --> PVarExt(Extended) and hide Optional<T> input format.
Look like --> `PVarExt<IntImm> c1, c2, c3;`
A1: Provide default constructor with default values.
Look like: `PVar<IntImm> c1(IntImm(DataType::Int(32), 0)),
c2(IntImm(DataType::Int(32), 0)), c3(IntImm(DataType::Int(32), 0));`
Please let me know your thoughts on this. Thanks!
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]