diff --git a/src/relay/op/tensor/reduce.cc b/src/relay/op/tensor/reduce.cc index 733d6e9448fd..6ffcc675560d 100644 --- a/src/relay/op/tensor/reduce.cc +++ b/src/relay/op/tensor/reduce.cc @@ -295,7 +295,6 @@ bool ReduceRel(const Array& types, int num_inputs, const Attrs& attrs, } Expr MakeReduce(Expr data, Array axis, bool keepdims, bool exclude, String op_name) { - std::cout << "making " << op_name << std::endl; auto attrs = make_object(); attrs->axis = std::move(axis); attrs->keepdims = keepdims;