Commit 2a1e1607 by Meghan Cowan Committed by Tianqi Chen

Add UIntImm to select rewrite (#909)

parent 6d4eb2e8
......@@ -77,6 +77,7 @@ class UnsafeExprDetector : public ExprFunctor<bool(const Expr& n)> {
return false;
}
bool VisitExpr_(const Variable* op) final { return false; }
bool VisitExpr_(const UIntImm* op) final { return false; }
bool VisitExpr_(const IntImm* op) final { return false; }
bool VisitExpr_(const FloatImm* op) final { return false; }
bool VisitExpr_(const StringImm* op) final { return false; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment