Remove unnecessary std::cout (#6072)
authorZhao Wu <zhaowu@apache.org>
Thu, 16 Jul 2020 17:30:08 +0000 (01:30 +0800)
committerGitHub <noreply@github.com>
Thu, 16 Jul 2020 17:30:08 +0000 (10:30 -0700)
* Remove unnecessary std::cout

* Trigger CI

src/relay/op/tensor/reduce.cc

index 733d6e9..6ffcc67 100644 (file)
@@ -295,7 +295,6 @@ bool ReduceRel(const Array<Type>& types, int num_inputs, const Attrs& attrs,
 }
 
 Expr MakeReduce(Expr data, Array<Integer> axis, bool keepdims, bool exclude, String op_name) {
-  std::cout << "making " << op_name << std::endl;
   auto attrs = make_object<ReduceAttrs>();
   attrs->axis = std::move(axis);
   attrs->keepdims = keepdims;