Skip to content

Commit e0ef42a

Browse files
committed
"fix ci"
1 parent 8483578 commit e0ef42a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

paddle/operators/reduce_op.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,9 @@ class ReduceKernel : public framework::OpKernel<T> {
144144

145145
if (D == 1) {
146146
auto out = EigenScalar<T>::From(*output);
147-
// auto out = EigenTensor<T, 1>::From(*output, dims);
148-
VLOG(0) << "x dims : " << x.rank() << " out dims : " << out.rank();
149147
functor(place, x, out, reduce_dim);
150148
} else {
151149
auto out = EigenTensor<T, (D - 1)>::From(*output, dims);
152-
// VLOG(0) << "x dims : "<< x.dimensions().size() << " out dims : "
153-
// << out.dimensions().size();
154150
functor(place, x, out, reduce_dim);
155151
}
156152
}

0 commit comments

Comments
 (0)