Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
3d39f5c7
P
Paddle
项目概览
Crayon鑫
/
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看板
未验证
提交
3d39f5c7
编写于
3月 30, 2022
作者:
X
xiongkun
提交者:
GitHub
3月 30, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix unsqueeze op get wrong output shape in compile time infer shape. (#41097)
上级
e494b73b
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
4 deletion
+13
-4
paddle/phi/infermeta/unary.cc
paddle/phi/infermeta/unary.cc
+11
-3
paddle/phi/infermeta/unary.h
paddle/phi/infermeta/unary.h
+2
-1
未找到文件。
paddle/phi/infermeta/unary.cc
浏览文件 @
3d39f5c7
...
...
@@ -2555,7 +2555,8 @@ void UnfoldInferMeta(const MetaTensor& x,
void
UnsqueezeInferMeta
(
const
MetaTensor
&
x
,
const
ScalarArray
&
axes
,
MetaTensor
*
xshape
,
MetaTensor
*
out
)
{
MetaTensor
*
out
,
MetaConfig
config
)
{
const
auto
&
x_dims
=
x
.
dims
();
// Validity Check: input tensor dims (<6).
PADDLE_ENFORCE_LE
(
x_dims
.
size
(),
...
...
@@ -2564,7 +2565,13 @@ void UnsqueezeInferMeta(const MetaTensor& x,
"Invalid "
"dimensions, the rank of Input(X) "
"should be in the range of [1, 6] (Eigen limit)"
));
if
(
!
axes
.
GetData
().
empty
())
{
if
(
!
config
.
is_runtime
&&
axes
.
FromTensor
())
{
// compile time infershape. set all elements to -1.
int
output_size
=
x
.
dims
().
size
()
+
axes
.
GetData
().
size
();
std
::
vector
<
int64_t
>
vec_out_dims
(
output_size
,
-
1
);
out
->
set_dtype
(
x
.
dtype
());
out
->
set_dims
(
phi
::
make_ddim
(
vec_out_dims
));
}
else
if
(
!
axes
.
GetData
().
empty
())
{
std
::
vector
<
int32_t
>
tmp
;
tmp
.
reserve
(
axes
.
GetData
().
size
());
std
::
for_each
(
axes
.
GetData
().
begin
(),
...
...
@@ -2575,7 +2582,9 @@ void UnsqueezeInferMeta(const MetaTensor& x,
if
(
x_dims
[
0
]
==
out_dims
[
0
])
{
out
->
share_lod
(
x
);
}
out
->
set_dtype
(
x
.
dtype
());
}
// set xshape dims.
std
::
vector
<
int64_t
>
xshape_dims
(
x_dims
.
size
()
+
1
);
xshape_dims
[
0
]
=
0
;
for
(
int
i
=
0
;
i
<
x_dims
.
size
();
++
i
)
{
...
...
@@ -2583,7 +2592,6 @@ void UnsqueezeInferMeta(const MetaTensor& x,
}
xshape
->
set_dims
(
phi
::
make_ddim
(
xshape_dims
));
xshape
->
share_lod
(
x
);
out
->
set_dtype
(
x
.
dtype
());
xshape
->
set_dtype
(
x
.
dtype
());
}
...
...
paddle/phi/infermeta/unary.h
浏览文件 @
3d39f5c7
...
...
@@ -363,7 +363,8 @@ void UnfoldInferMeta(const MetaTensor& x,
void
UnsqueezeInferMeta
(
const
MetaTensor
&
x
,
const
ScalarArray
&
axes
,
MetaTensor
*
xshape
,
MetaTensor
*
out
);
MetaTensor
*
out
,
MetaConfig
config
=
MetaConfig
());
void
OneHotRawInferMeta
(
const
MetaTensor
&
x
,
int32_t
depth
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录