Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
1b999d2b
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
1b999d2b
编写于
1月 04, 2021
作者:
W
whs
提交者:
GitHub
1月 04, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add version checking (#30040)
上级
4d395203
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
27 addition
and
4 deletion
+27
-4
paddle/fluid/operators/affine_grid_op.cc
paddle/fluid/operators/affine_grid_op.cc
+9
-0
paddle/fluid/operators/detection/generate_proposal_labels_op.cc
.../fluid/operators/detection/generate_proposal_labels_op.cc
+14
-0
paddle/fluid/operators/gaussian_random_op.cc
paddle/fluid/operators/gaussian_random_op.cc
+4
-4
未找到文件。
paddle/fluid/operators/affine_grid_op.cc
浏览文件 @
1b999d2b
...
...
@@ -17,6 +17,7 @@ limitations under the License. */
#include <string>
#include <vector>
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/op_version_registry.h"
#ifdef PADDLE_WITH_CUDA
#include "paddle/fluid/platform/cudnn_helper.h"
#endif
...
...
@@ -271,3 +272,11 @@ REGISTER_OP_CPU_KERNEL(
affine_grid_grad
,
ops
::
AffineGridGradOpKernel
<
paddle
::
platform
::
CPUDeviceContext
,
float
>
,
ops
::
AffineGridGradOpKernel
<
paddle
::
platform
::
CPUDeviceContext
,
double
>
);
REGISTER_OP_VERSION
(
affine_grid
)
.
AddCheckpoint
(
R"ROC(
Compatible upgrade of affine_grid, add a new attribute [align_corners])ROC"
,
paddle
::
framework
::
compatible
::
OpVersionDesc
().
NewAttr
(
"align_corners"
,
"Whether to align the corners of input and output."
,
true
));
paddle/fluid/operators/detection/generate_proposal_labels_op.cc
浏览文件 @
1b999d2b
...
...
@@ -14,6 +14,7 @@ limitations under the License. */
#include <string>
#include <vector>
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/op_version_registry.h"
#include "paddle/fluid/operators/detection/bbox_util.h"
#include "paddle/fluid/operators/gather.h"
#include "paddle/fluid/operators/math/concat_and_split.h"
...
...
@@ -713,3 +714,16 @@ REGISTER_OPERATOR(
REGISTER_OP_CPU_KERNEL
(
generate_proposal_labels
,
ops
::
GenerateProposalLabelsKernel
<
float
>
,
ops
::
GenerateProposalLabelsKernel
<
double
>
);
REGISTER_OP_VERSION
(
generate_proposal_labels
)
.
AddCheckpoint
(
R"ROC(
Upgrade of output [MaxOverlapWithGT])ROC"
,
paddle
::
framework
::
compatible
::
OpVersionDesc
().
NewOutput
(
"MaxOverlapWithGT"
,
"The maxoverlap between output RoIs and ground-truth."
))
.
AddCheckpoint
(
R"ROC(
Upgrade generate_proposal_labels add a new input [MaxOverlap])ROC"
,
paddle
::
framework
::
compatible
::
OpVersionDesc
().
NewInput
(
"MaxOverlap"
,
"MaxOverlap is dispensable."
));
paddle/fluid/operators/gaussian_random_op.cc
浏览文件 @
1b999d2b
...
...
@@ -210,7 +210,7 @@ REGISTER_OP_VERSION(gaussian_random)
.
NewInput
(
"ShapeTensorList"
,
"The output shape supports list filled with Tensor. "
"ShapeTensorList is dispensable."
)
.
ModifyAttr
(
"shape"
,
"Add the default value of shape, the default value is {}
."
,
{}));
.
ModifyAttr
(
"shape"
,
"The arg 'default_value' of attr 'shape' is changed: "
"from 'None' to '{}'
."
,
std
::
vector
<
int64_t
>
{}));
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录