diff --git a/paddle/operators/math/maxouting.cc b/paddle/operators/math/maxouting.cc index aa8d44d2ff7d3b07c4476d124215f72ba371b3fd..a4d46ccc98779986210942dfbfc0a43e123ef1bd 100644 --- a/paddle/operators/math/maxouting.cc +++ b/paddle/operators/math/maxouting.cc @@ -47,7 +47,8 @@ class MaxOutFunctor { // T ele = maxout_process.initial(); T ele = static_cast(-FLT_MAX); for (int ph = 0; ph < groups; ++ph) { - T x = input_data[(new_bindex+new_cindex) * groups+ph*fea_size+f]; + T x = input_data[(new_bindex + new_cindex) * groups + + ph * fea_size + f]; ele = ele > x ? ele : x; } output_data[(new_bindex+new_cindex+f)] = ele;