Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
af29fcb2
MegEngine
项目概览
MegEngine 天元
/
MegEngine
大约 1 年 前同步成功
通知
399
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看板
提交
af29fcb2
编写于
6月 01, 2020
作者:
M
Megvii Engine Team
提交者:
Xu Xinran
6月 19, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(mgb/plugin): add param json func for indexing oprs
GitOrigin-RevId: b5becbbc028b16e4e1dcf313a1acf1c8b5bb11d8
上级
62753c4d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
58 addition
and
0 deletion
+58
-0
src/plugin/impl/opr_footprint.cpp
src/plugin/impl/opr_footprint.cpp
+58
-0
未找到文件。
src/plugin/impl/opr_footprint.cpp
浏览文件 @
af29fcb2
...
@@ -512,6 +512,61 @@ REGISTE_PARAM_JSON_FUNC(DeformableConvBackwardFilter)
...
@@ -512,6 +512,61 @@ REGISTE_PARAM_JSON_FUNC(DeformableConvBackwardFilter)
REGISTE_PARAM_JSON_FUNC
(
DeformableConvBackwardData
)
REGISTE_PARAM_JSON_FUNC
(
DeformableConvBackwardData
)
REGISTE_PARAM_JSON_FUNC
(
BatchConvBiasForward
)
REGISTE_PARAM_JSON_FUNC
(
BatchConvBiasForward
)
template
<
>
std
::
shared_ptr
<
json
::
Value
>
opr_param_json_func
<
opr
::
Dimshuffle
>
(
cg
::
OperatorNodeBase
*
opr
)
{
auto
param
=
opr
->
cast_final_safe
<
opr
::
Dimshuffle
>
().
param
();
auto
pattern
=
json
::
Array
::
make
();
for
(
size_t
i
=
0
;
i
<
param
.
pattern_len
;
i
++
)
pattern
->
add
(
json
::
NumberInt
::
make
(
param
.
pattern
[
i
]));
return
json
::
Object
::
make
({
{
"ndim"
,
json
::
NumberInt
::
make
(
param
.
ndim
)},
{
"pattern"
,
pattern
},
});
}
template
<
>
std
::
shared_ptr
<
json
::
Value
>
opr_param_json_func
<
opr
::
AxisAddRemove
>
(
cg
::
OperatorNodeBase
*
opr
)
{
auto
param
=
opr
->
cast_final_safe
<
opr
::
AxisAddRemove
>
().
param
();
auto
desc
=
json
::
Array
::
make
();
for
(
size_t
i
=
0
;
i
<
param
.
nr_desc
;
i
++
)
{
auto
axisdesc
=
param
.
desc
[
i
];
desc
->
add
(
json
::
Object
::
make
({
{
"method"
,
json
::
NumberInt
::
make
(
static_cast
<
int32_t
>
(
axisdesc
.
method
))},
{
"axisnum"
,
json
::
NumberInt
::
make
(
axisdesc
.
axis
.
get_raw
())},
}));
}
return
json
::
Object
::
make
({
{
"nr_desc"
,
json
::
NumberInt
::
make
(
param
.
nr_desc
)},
{
"desc"
,
desc
},
});
}
template
<
>
std
::
shared_ptr
<
json
::
Value
>
opr_param_json_func
<
opr
::
Subtensor
>
(
cg
::
OperatorNodeBase
*
opr
)
{
auto
desc
=
json
::
Array
::
make
();
auto
indices
=
opr
->
cast_final_safe
<
opr
::
Subtensor
>
().
index_desc
();
for
(
auto
&
index
:
indices
){
desc
->
add
(
json
::
Object
::
make
({
{
"axis"
,
json
::
NumberInt
::
make
(
index
.
axis
.
get_raw
())},
{
"begin"
,
json
::
NumberInt
::
make
(
index
.
begin
.
node
()
!=
nullptr
)},
{
"end"
,
json
::
NumberInt
::
make
(
index
.
end
.
node
()
!=
nullptr
)},
{
"step"
,
json
::
NumberInt
::
make
(
index
.
step
.
node
()
!=
nullptr
)},
{
"idx"
,
json
::
NumberInt
::
make
(
index
.
idx
.
node
()
!=
nullptr
)},
}));
}
return
desc
;
}
#endif // MGB_ENABLE_JSON
#endif // MGB_ENABLE_JSON
}
// namespace
}
// namespace
...
@@ -573,6 +628,9 @@ void OprFootprint::init_all_footprints() {
...
@@ -573,6 +628,9 @@ void OprFootprint::init_all_footprints() {
add_single_param_json
<
opr
::
GroupLocal
>
();
add_single_param_json
<
opr
::
GroupLocal
>
();
add_single_param_json
<
opr
::
LRN
>
();
add_single_param_json
<
opr
::
LRN
>
();
add_single_param_json
<
opr
::
Concat
>
();
add_single_param_json
<
opr
::
Concat
>
();
add_single_param_json
<
opr
::
Dimshuffle
>
();
add_single_param_json
<
opr
::
AxisAddRemove
>
();
add_single_param_json
<
opr
::
Subtensor
>
();
add_single_param_json
<
opr
::
Reduce
>
();
add_single_param_json
<
opr
::
Reduce
>
();
add_single_param_json
<
opr
::
LocalShareForward
>
();
add_single_param_json
<
opr
::
LocalShareForward
>
();
add_single_param_json
<
opr
::
LocalShareBackwardData
>
();
add_single_param_json
<
opr
::
LocalShareBackwardData
>
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录