Skip to content

Commit 6d32e96

Browse files
committed
remove redundant comments
1 parent 568c4e5 commit 6d32e96

File tree

4 files changed

+0
-14
lines changed

4 files changed

+0
-14
lines changed

paddle/fluid/operators/arg_max_op.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@ See the License for the specific language governing permissions and
1313
limitations under the License. */
1414

1515
#include "paddle/fluid/operators/arg_max_op.h"
16-
/*
17-
REGISTER_ARG_MINMAX_OP_WITHOUT_GRADIENT(arg_max, ArgMax);
18-
19-
REGISTER_ARG_MINMAX_KERNEL(arg_max, ArgMax, CPU);
20-
*/
2116

2217
REGISTER_OPERATOR(arg_max, paddle::operators::ArgMaxOp,
2318
paddle::operators::ArgMaxOpMaker,

paddle/fluid/operators/arg_max_op.cu

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ limitations under the License. */
1414

1515
#include "paddle/fluid/operators/arg_max_op.h"
1616

17-
// REGISTER_ARG_MINMAX_KERNEL(arg_max, ArgMax, CUDA);
18-
1917
REGISTER_OP_CUDA_KERNEL(
2018
arg_max,
2119
paddle::operators::ArgMaxKernel<paddle::platform::CUDADeviceContext, float,

paddle/fluid/operators/arg_min_op.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@ See the License for the specific language governing permissions and
1313
limitations under the License. */
1414

1515
#include "paddle/fluid/operators/arg_min_op.h"
16-
/*
17-
REGISTER_ARG_MINMAX_OP_WITHOUT_GRADIENT(arg_min, ArgMin);
18-
19-
REGISTER_ARG_MINMAX_KERNEL(arg_min, ArgMin, CPU);
20-
*/
2116

2217
REGISTER_OPERATOR(arg_min, paddle::operators::ArgMinOp,
2318
paddle::operators::ArgMinOpMaker,

paddle/fluid/operators/arg_min_op.cu

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ limitations under the License. */
1414

1515
#include "paddle/fluid/operators/arg_min_op.h"
1616

17-
// REGISTER_ARG_MINMAX_KERNEL(arg_min, ArgMin, CUDA);
18-
1917
REGISTER_OP_CUDA_KERNEL(
2018
arg_min,
2119
paddle::operators::ArgMinKernel<paddle::platform::CUDADeviceContext, float,

0 commit comments

Comments
 (0)