Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
9e917a1e
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
9e917a1e
编写于
9月 21, 2022
作者:
N
Nyakku Shigure
提交者:
GitHub
9月 21, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CodeStyle] remove tabs in cpp files (#46236)
* [CodeStyle] remove tabs in cpp files * update comment format
上级
669c7d51
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
34 addition
and
36 deletion
+34
-36
paddle/fluid/operators/dequeue_op.cc
paddle/fluid/operators/dequeue_op.cc
+1
-1
paddle/fluid/operators/enqueue_op.cc
paddle/fluid/operators/enqueue_op.cc
+1
-1
paddle/fluid/operators/pixel_shuffle_op.cc
paddle/fluid/operators/pixel_shuffle_op.cc
+12
-13
paddle/fluid/operators/pixel_unshuffle_op.cc
paddle/fluid/operators/pixel_unshuffle_op.cc
+9
-10
paddle/fluid/operators/reader/create_ctr_reader_op.cc
paddle/fluid/operators/reader/create_ctr_reader_op.cc
+1
-1
paddle/fluid/operators/shuffle_channel_op.cc
paddle/fluid/operators/shuffle_channel_op.cc
+10
-10
未找到文件。
paddle/fluid/operators/dequeue_op.cc
浏览文件 @
9e917a1e
...
...
@@ -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"
);
}
};
...
...
paddle/fluid/operators/enqueue_op.cc
浏览文件 @
9e917a1e
...
...
@@ -78,7 +78,7 @@ class EnqueueOpMaker : public framework::OpProtoAndCheckerMaker {
AddAttr
<
std
::
string
>
(
"queue_name"
,
"Name of the `LoDTensorBlockingQueueHolder` variable"
);
AddComment
(
R"DOC(
Enqueue operator.
Enqueue operator.
)DOC"
);
}
};
...
...
paddle/fluid/operators/pixel_shuffle_op.cc
浏览文件 @
9e917a1e
...
...
@@ -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 <https://arxiv.org/abs/1609.05158v2>`_
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 <https://arxiv.org/abs/1609.05158v2>`_
by Shi et. al (2016) for more details.
)DOC"
);
}
};
...
...
paddle/fluid/operators/pixel_unshuffle_op.cc
浏览文件 @
9e917a1e
...
...
@@ -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 <https://arxiv.org/abs/1609.05158v2>`_
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 <https://arxiv.org/abs/1609.05158v2>`_
by Shi et. al (2016) for more details.
)DOC"
);
}
};
...
...
paddle/fluid/operators/reader/create_ctr_reader_op.cc
浏览文件 @
9e917a1e
...
...
@@ -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"
);
}
};
...
...
paddle/fluid/operators/shuffle_channel_op.cc
浏览文件 @
9e917a1e
...
...
@@ -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"
);
}
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录