From 9e917a1e85c0f92453bd2ef93c55e7825d05e349 Mon Sep 17 00:00:00 2001 From: Nyakku Shigure Date: Wed, 21 Sep 2022 11:08:45 +0800 Subject: [PATCH] [CodeStyle] remove tabs in cpp files (#46236) * [CodeStyle] remove tabs in cpp files * update comment format --- paddle/fluid/operators/dequeue_op.cc | 2 +- paddle/fluid/operators/enqueue_op.cc | 2 +- paddle/fluid/operators/pixel_shuffle_op.cc | 25 +++++++++---------- paddle/fluid/operators/pixel_unshuffle_op.cc | 19 +++++++------- .../operators/reader/create_ctr_reader_op.cc | 2 +- paddle/fluid/operators/shuffle_channel_op.cc | 20 +++++++-------- 6 files changed, 34 insertions(+), 36 deletions(-) diff --git a/paddle/fluid/operators/dequeue_op.cc b/paddle/fluid/operators/dequeue_op.cc index a23b408d0b7..8467bd58cea 100644 --- a/paddle/fluid/operators/dequeue_op.cc +++ b/paddle/fluid/operators/dequeue_op.cc @@ -90,7 +90,7 @@ class DequeueOpMaker : public framework::OpProtoAndCheckerMaker { AddOutput("Out", "A list of `lod_tensor` to dequeue and assigned.") .AsDuplicable(); AddComment(R"DOC( - Dequeue operator. + Dequeue operator. )DOC"); } }; diff --git a/paddle/fluid/operators/enqueue_op.cc b/paddle/fluid/operators/enqueue_op.cc index b118852870e..e8c2a4d5db6 100644 --- a/paddle/fluid/operators/enqueue_op.cc +++ b/paddle/fluid/operators/enqueue_op.cc @@ -78,7 +78,7 @@ class EnqueueOpMaker : public framework::OpProtoAndCheckerMaker { AddAttr("queue_name", "Name of the `LoDTensorBlockingQueueHolder` variable"); AddComment(R"DOC( - Enqueue operator. + Enqueue operator. )DOC"); } }; diff --git a/paddle/fluid/operators/pixel_shuffle_op.cc b/paddle/fluid/operators/pixel_shuffle_op.cc index 64e73217068..098395d8850 100644 --- a/paddle/fluid/operators/pixel_shuffle_op.cc +++ b/paddle/fluid/operators/pixel_shuffle_op.cc @@ -52,19 +52,18 @@ class PixelShuffleOpMaker : public framework::OpProtoAndCheckerMaker { .SetDefault("NCHW"); AddComment(R"DOC( - Pixel Shuffle operator - This operator rearranges elements in a tensor of shape :math:`(*, C \times r^2, H, W)` - to a tensor of shape :math:`(C, H \times r, W \times r)`. - - This is useful for implementing efficient sub-pixel convolution - with a stride of :math:`1/r`. - - Please refer to the paper: - `Real-Time Single Image and Video Super-Resolution Using an Efficient - Sub-Pixel Convolutional Neural Network `_ - by Shi et. al (2016) for more details. - - )DOC"); + Pixel Shuffle operator + This operator rearranges elements in a tensor of shape :math:`(*, C \times r^2, H, W)` + to a tensor of shape :math:`(C, H \times r, W \times r)`. + + This is useful for implementing efficient sub-pixel convolution + with a stride of :math:`1/r`. + + Please refer to the paper: + `Real-Time Single Image and Video Super-Resolution Using an Efficient + Sub-Pixel Convolutional Neural Network `_ + by Shi et. al (2016) for more details. + )DOC"); } }; diff --git a/paddle/fluid/operators/pixel_unshuffle_op.cc b/paddle/fluid/operators/pixel_unshuffle_op.cc index e0ac5283ab8..52b7452d7a8 100644 --- a/paddle/fluid/operators/pixel_unshuffle_op.cc +++ b/paddle/fluid/operators/pixel_unshuffle_op.cc @@ -48,18 +48,17 @@ class PixelUnshuffleOpMaker : public framework::OpProtoAndCheckerMaker { .SetDefault("NCHW"); AddComment(R"DOC( - Pixel Unshuffle operator - This operator rearranges elements in a tensor of shape :math:`(*, C, H, W)` - to a tensor of shape :math:`(*, C\times r^2, H / r, W / r)`. + Pixel Unshuffle operator + This operator rearranges elements in a tensor of shape :math:`(*, C, H, W)` + to a tensor of shape :math:`(*, C\times r^2, H / r, W / r)`. - This operation is the reversion of PixelShuffle operation. + This operation is the reversion of PixelShuffle operation. - Please refer to the paper: - `Real-Time Single Image and Video Super-Resolution Using an Efficient - Sub-Pixel Convolutional Neural Network `_ - by Shi et. al (2016) for more details. - - )DOC"); + Please refer to the paper: + `Real-Time Single Image and Video Super-Resolution Using an Efficient + Sub-Pixel Convolutional Neural Network `_ + by Shi et. al (2016) for more details. + )DOC"); } }; diff --git a/paddle/fluid/operators/reader/create_ctr_reader_op.cc b/paddle/fluid/operators/reader/create_ctr_reader_op.cc index 6af29bfa5af..8c38aaf528d 100644 --- a/paddle/fluid/operators/reader/create_ctr_reader_op.cc +++ b/paddle/fluid/operators/reader/create_ctr_reader_op.cc @@ -87,7 +87,7 @@ class CreateCTRReaderOpMaker : public FileReaderMakerBase { "format is svm"); AddComment(R"DOC( - Create CTRReader to support read ctr data with cpp. + Create CTRReader to support read ctr data with cpp. )DOC"); } }; diff --git a/paddle/fluid/operators/shuffle_channel_op.cc b/paddle/fluid/operators/shuffle_channel_op.cc index 9fc7c6488f4..ba96e92d303 100644 --- a/paddle/fluid/operators/shuffle_channel_op.cc +++ b/paddle/fluid/operators/shuffle_channel_op.cc @@ -70,16 +70,16 @@ class ShuffleChannelOpMaker : public framework::OpProtoAndCheckerMaker { "group should be larger than 0.")); }); AddComment(R"DOC( - Shuffle Channel operator - This opearator shuffles the channels of input x. - It divide the input channels in each group into several subgroups, - and obtain a new order by selecting element from every subgroup one by one. - - Shuffle channel operation makes it possible to build more powerful structures - with multiple group convolutional layers. - please get more information from the following paper: - https://arxiv.org/pdf/1707.01083.pdf - )DOC"); + Shuffle Channel operator + This opearator shuffles the channels of input x. + It divide the input channels in each group into several subgroups, + and obtain a new order by selecting element from every subgroup one by one. + + Shuffle channel operation makes it possible to build more powerful structures + with multiple group convolutional layers. + please get more information from the following paper: + https://arxiv.org/pdf/1707.01083.pdf + )DOC"); } }; -- GitLab