Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
2dbe8194
MegEngine
项目概览
MegEngine 天元
/
MegEngine
1 年多 前同步成功
通知
403
Star
4705
Fork
582
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
MegEngine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
2dbe8194
编写于
8月 27, 2020
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(mge/opr): fix reduction static infer value
GitOrigin-RevId: 6623d4719a83e887ab44ec1bee1235b8746aca57
上级
c20d4cc6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
25 addition
and
1 deletion
+25
-1
src/opr/impl/basic_arith.cpp
src/opr/impl/basic_arith.cpp
+3
-1
src/opr/test/basic_arith/reduction.cpp
src/opr/test/basic_arith/reduction.cpp
+22
-0
未找到文件。
src/opr/impl/basic_arith.cpp
浏览文件 @
2dbe8194
...
@@ -1666,8 +1666,10 @@ void Reduce::perform(
...
@@ -1666,8 +1666,10 @@ void Reduce::perform(
mgb_assert
(
!
dest
.
storage
().
comp_node_valid
()
||
mgb_assert
(
!
dest
.
storage
().
comp_node_valid
()
||
opr
.
comp_node
()
==
dest
.
comp_node
());
opr
.
comp_node
()
==
dest
.
comp_node
());
KernScheduler
ksched
;
KernScheduler
ksched
;
OutTensorShapeExtender
extender
(
input
.
shape
(),
target_shape
);
auto
&&
canonized_oshp
=
extender
.
get
();
ksched
.
init_shapes
(
opr
.
get
(),
opr
.
comp_node
(),
input
.
layout
().
dtype
,
ksched
.
init_shapes
(
opr
.
get
(),
opr
.
comp_node
(),
input
.
layout
().
dtype
,
mode
,
input
.
shape
(),
target_shape
,
data_type
);
mode
,
input
.
shape
(),
canonized_oshp
,
data_type
);
if
(
!
ksched
.
has_actual_computing
())
{
if
(
!
ksched
.
has_actual_computing
())
{
mgb_assert
(
target_shape
.
total_nr_elems
()
==
mgb_assert
(
target_shape
.
total_nr_elems
()
==
...
...
src/opr/test/basic_arith/reduction.cpp
浏览文件 @
2dbe8194
...
@@ -844,4 +844,26 @@ TEST(TestBasicArithReduction, CompSeqRecordLevel2) {
...
@@ -844,4 +844,26 @@ TEST(TestBasicArithReduction, CompSeqRecordLevel2) {
EXPECT_NO_THROW
(
func
->
execute
().
wait
());
EXPECT_NO_THROW
(
func
->
execute
().
wait
());
}
}
TEST
(
TestBasicArithReduction
,
StaticInferValue
)
{
HostTensorGenerator
<>
gen
;
auto
host_x
=
gen
({
2
,
3
,
4
,
5
});
auto
graph
=
ComputingGraph
::
make
();
using
AI
=
opr
::
Subtensor
::
AxisIndexer
;
// h2d default param enable value infer
auto
x
=
opr
::
Host2DeviceCopy
::
make
(
*
graph
,
host_x
),
x_shape
=
opr
::
GetVarShape
::
make
(
x
),
x_shape_sub
=
opr
::
Subtensor
::
make
(
x_shape
,
{
AI
::
make_interval
(
0
,
x
.
make_scalar
(
-
2
),
nullptr
,
nullptr
)}),
y
=
opr
::
reduce_sum
(
x
,
x_shape_sub
);
auto
inferred_dev
=
graph
->
static_infer_manager
().
infer_value
(
y
.
node
());
HostTensorND
expected
{
host_x
->
comp_node
(),
dtype
::
Float32
()};
// reduce_raw requires the same ndim between src and dest
expected
.
resize
({
1
,
1
,
4
,
5
});
reduce_raw
<
Mode
::
SUM
,
float
>
(
expected
,
*
host_x
);
// reshape as {4, 5}
expected
.
reset
(
expected
.
storage
(),
inferred_dev
.
layout
());
HostTensorND
inferred
=
HostTensorND
::
make_proxy
(
inferred_dev
);
MGB_ASSERT_TENSOR_EQ
(
inferred
,
expected
);
}
// vim: syntax=cpp.doxygen foldmethod=marker foldmarker=f{{{,f}}}
// vim: syntax=cpp.doxygen foldmethod=marker foldmarker=f{{{,f}}}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录