From: Cody Yu Date: Thu, 21 May 2020 22:09:28 +0000 (-0700) Subject: Remove unnecessary print (#5642) X-Git-Tag: upstream/0.7.0~685 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fd052ba49f49fac136a1b17ca1bd967dd0aa4fd6;p=platform%2Fupstream%2Ftvm.git Remove unnecessary print (#5642) --- diff --git a/src/relay/ir/dataflow_matcher.cc b/src/relay/ir/dataflow_matcher.cc index 3f21581..4bb2b0b 100644 --- a/src/relay/ir/dataflow_matcher.cc +++ b/src/relay/ir/dataflow_matcher.cc @@ -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()) { return val->value == rhs.operator std::string(); } else if (auto* val = lhs.as()) {