Skip to content

Commit

Permalink
Remove unnecessary std::cout (apache#6072)
Browse files Browse the repository at this point in the history
* Remove unnecessary std::cout

* Trigger CI
  • Loading branch information
FrozenGene authored and Trevor Morris committed Aug 26, 2020
1 parent 4f1a6e8 commit 03229eb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/relay/op/tensor/reduce.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 03229eb

Please sign in to comment.