Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
5962c6ef
M
mindspore
项目概览
magicwindyyd
/
mindspore
与 Fork 源项目一致
Fork自
MindSpore / mindspore
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindspore
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
5962c6ef
编写于
6月 19, 2020
作者:
Z
zhaozhenlong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
solve broadcast two same shape bprop error
make unsupported shape error info explicit
上级
9bc2ffde
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
15 addition
and
0 deletion
+15
-0
mindspore/ops/_grad/grad_array_ops.py
mindspore/ops/_grad/grad_array_ops.py
+4
-0
mindspore/ops/operations/array_ops.py
mindspore/ops/operations/array_ops.py
+11
-0
未找到文件。
mindspore/ops/_grad/grad_array_ops.py
浏览文件 @
5962c6ef
...
...
@@ -673,6 +673,10 @@ def get_bprop_broadcast_to(self):
def
bprop
(
x
,
out
,
dout
):
x_shape
=
shape_op
(
x
)
dout_shape
=
shape_op
(
dout
)
if
x_shape
==
dout_shape
:
return
(
dout
,)
_
,
reduction_axes
=
broadcast_gradient_args
(
broadcast_shape
,
x_shape
)
reduced_grad
=
reduce_keep_dim
(
dout
,
reduction_axes
)
dx
=
reshape
(
reduced_grad
,
x_shape
)
...
...
mindspore/ops/operations/array_ops.py
浏览文件 @
5962c6ef
...
...
@@ -2719,6 +2719,8 @@ class BatchToSpaceND(PrimitiveWithInfer):
class
BroadcastTo
(
PrimitiveWithInfer
):
"""
Broadcasts input tensor to a given shape.
Input shape can be broadcast to target shape if for each dimension pair they are either equal or input is one.
When input shape is broadcast to target shape, it starts with the trailing dimensions.
Args:
shape (tuple): The target shape to broadcast.
...
...
@@ -2741,11 +2743,20 @@ class BroadcastTo(PrimitiveWithInfer):
def
__init__
(
self
,
shape
):
"""Init BroadcastTo"""
validator
.
check_value_type
(
"shape"
,
shape
,
(
tuple
),
self
.
name
)
validator
.
check
(
"shape length"
,
len
(
shape
),
""
,
0
,
Rel
.
GT
,
self
.
name
)
for
i
in
shape
:
validator
.
check_integer
(
"shape element"
,
i
,
0
,
Rel
.
GT
,
self
.
name
)
self
.
shape
=
shape
def
infer_shape
(
self
,
x_shape
):
validator
.
check
(
"input_x shape length"
,
len
(
x_shape
),
"target shape"
,
len
(
self
.
shape
),
Rel
.
LE
,
self
.
name
)
reversed_x_shape
=
tuple
(
reversed
(
x_shape
))
reversed_target
=
tuple
(
reversed
(
self
.
shape
))
for
i
,
v
in
enumerate
(
reversed_x_shape
):
if
v
not
in
(
reversed_target
[
i
],
1
):
raise
ValueError
(
f
"Not supported shapes for broadcast, "
f
"x_shape:
{
tuple
(
x_shape
)
}
, target shape
{
self
.
shape
}
."
)
return
self
.
shape
def
infer_dtype
(
self
,
x_dtype
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录