Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
798f7b3e
MegEngine
项目概览
MegEngine 天元
/
MegEngine
1 年多 前同步成功
通知
404
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看板
提交
798f7b3e
编写于
11月 18, 2020
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(imperative): add virtual_deps op
GitOrigin-RevId: 5845520989ec573943b8910503c8e4c626aa0363
上级
1e71e0af
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
78 addition
and
0 deletion
+78
-0
imperative/python/src/ops.cpp
imperative/python/src/ops.cpp
+4
-0
imperative/src/impl/ops/utility.cpp
imperative/src/impl/ops/utility.cpp
+39
-0
imperative/src/include/megbrain/imperative/ops/utility.h
imperative/src/include/megbrain/imperative/ops/utility.h
+35
-0
未找到文件。
imperative/python/src/ops.cpp
浏览文件 @
798f7b3e
...
...
@@ -22,6 +22,7 @@
#include "megbrain/imperative/ops/elemwise.h"
#include "megbrain/imperative/ops/batch_norm.h"
#include "megbrain/imperative/ops/broadcast.h"
#include "megbrain/imperative/ops/utility.h"
namespace
py
=
pybind11
;
...
...
@@ -113,6 +114,9 @@ void init_ops(py::module m) {
.
def
(
py
::
init
<>
())
.
def_readwrite
(
"offsets"
,
&
ParamPackConcat
::
offsets
);
py
::
class_
<
VirtualDep
,
std
::
shared_ptr
<
VirtualDep
>
,
OpDef
>
(
m
,
"VirtualDep"
)
.
def
(
py
::
init
<>
());
py
::
class_
<
CondTake
,
std
::
shared_ptr
<
CondTake
>
,
OpDef
>
(
m
,
"CondTake"
)
.
def
(
py
::
init
<>
());
...
...
imperative/src/impl/ops/utility.cpp
0 → 100644
浏览文件 @
798f7b3e
/**
* \file imperative/src/impl/ops/utility.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/imperative/ops/utility.h"
#include "megbrain/imperative/ops/opr_attr.h"
#include "megbrain/opr/utility.h"
#include "../op_trait.h"
namespace
mgb
::
imperative
{
namespace
{
cg
::
OperatorNodeBase
*
virtual_dep_apply_on_var_node
(
const
OpDef
&
def
,
const
VarNodeArray
&
inputs
)
{
auto
&&
graph
=
inputs
[
0
]
->
owner_graph
();
VarNodeArray
inps
(
inputs
.
begin
(),
inputs
.
end
());
cg
::
OperatorNodeConfig
config
;
cg
::
OperatorNodeBase
*
opr
=
graph
->
insert_opr
(
std
::
make_unique
<
mgb
::
opr
::
VirtualDep
>
(
inps
,
config
));
return
opr
;
}
OP_TRAIT_REG
(
VirtualDep
,
VirtualDep
,
mgb
::
opr
::
VirtualDep
)
.
apply_on_var_node
(
virtual_dep_apply_on_var_node
)
.
fallback
();
}
// namespace
MGB_DYN_TYPE_OBJ_FINAL_IMPL
(
VirtualDep
);
}
// namespace mgb::imperative
imperative/src/include/megbrain/imperative/ops/utility.h
0 → 100644
浏览文件 @
798f7b3e
/**
* \file imperative/src/include/megbrain/imperative/ops/utility.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
#include "megbrain/imperative/op_def.h"
#include "megbrain/utils/hash.h"
namespace
mgb
::
imperative
{
class
VirtualDep
:
public
OpDefImplBase
<
VirtualDep
>
{
MGB_DYN_TYPE_OBJ_FINAL_DECL
;
public:
VirtualDep
()
=
default
;
size_t
hash
()
const
override
{
return
reinterpret_cast
<
size_t
>
(
dyn_typeinfo
());
}
bool
is_same_st
(
const
Hashable
&
rhs
)
const
override
{
return
true
;
}
};
}
// namespace mgb::imperative
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录