Remove unnecessary print (#5642)
authorCody Yu <comaniac0422@gmail.com>
Thu, 21 May 2020 22:09:28 +0000 (15:09 -0700)
committerGitHub <noreply@github.com>
Thu, 21 May 2020 22:09:28 +0000 (15:09 -0700)
src/relay/ir/dataflow_matcher.cc

index 3f21581..4bb2b0b 100644 (file)
@@ -114,7 +114,6 @@ bool MatchRetValue(const ObjectRef& lhs, const TVMRetValue& rhs) {
       }
       break;
     case kTVMStr:
-      std::cout << lhs << std::endl;
       if (auto* val = lhs.as<tir::StringImmNode>()) {
         return val->value == rhs.operator std::string();
       } else if (auto* val = lhs.as<StringObj>()) {