From f57cd1e0f9a9a263e12df1cf0c5273e975299a33 Mon Sep 17 00:00:00 2001 From: wanghaox Date: Tue, 14 Nov 2017 18:06:48 +0800 Subject: [PATCH] del a err comments --- paddle/operators/math/maxouting.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/paddle/operators/math/maxouting.h b/paddle/operators/math/maxouting.h index 6aaa1656a7..a8e91a25b5 100644 --- a/paddle/operators/math/maxouting.h +++ b/paddle/operators/math/maxouting.h @@ -48,20 +48,6 @@ class MaxOutGrad { }; -/* - * \brief Getting pooling results, and calculating gradient. - * - * In pool2d, all tensors are in NCHW format. Where N is batch size, C is the - * number of channels, H and W is the height and width of feature. - * In pool3d, all tensors are in NCDHW format. Where N is batch size, C is the - * number of channels, D, H and W is the depth, height and width of feature. - * - * In max pooling, it is possible that the pooling region has multiple maximum - * elements. In this case, we should compute the gradient of the first maximum - * element. - * This is different from average pooling. So we rewrite the max_pool_grad: - * MaxPool2dGradFunctor, MaxPool3dGradFunctor. - */ template class MaxOutFunctor { -- GitLab