Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
0bb49696
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
0bb49696
编写于
9月 04, 2020
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(imperative): fix dangling pointer in dispatcher
GitOrigin-RevId: b21f7e06f01e780486b2cf1e9495662b02934546
上级
799d09ef
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
20 addition
and
3 deletion
+20
-3
imperative/python/src/dispatcher.cpp
imperative/python/src/dispatcher.cpp
+20
-3
未找到文件。
imperative/python/src/dispatcher.cpp
浏览文件 @
0bb49696
...
...
@@ -11,6 +11,7 @@
#include "./dispatcher.h"
#include "./pyext17.h"
#include "megbrain/exception.h"
#include "megbrain/utils/hash.h"
#include "megbrain/utils/small_vector.h"
...
...
@@ -56,9 +57,25 @@ struct ObjectIdHash : std::hash<void*> {
}
};
namespace
{
using
Container
=
std
::
vector
<
Frame
>
;
struct
DispatcherStack
:
Container
{
constexpr
static
size_t
MAX_RECURSIVE_DEPTH
=
1024u
;
DispatcherStack
()
{
reserve
(
MAX_RECURSIVE_DEPTH
);
}
template
<
typename
...
Args
>
auto
&&
emplace_back_safely
(
Args
&&
...
args
)
{
mgb_throw_if
(
size
()
>=
MAX_RECURSIVE_DEPTH
,
mgb
::
MegBrainError
,
"recursion depth %zu is greater than the MAX_RECURSIVE_DEPTH(%zu)"
,
size
(),
MAX_RECURSIVE_DEPTH
);
return
emplace_back
(
std
::
forward
<
Args
>
(
args
)...);
}
};
}
// anonymous namespace
struct
Dispatcher
{
std
::
unordered_map
<
FastSig
,
std
::
unique_ptr
<
MRO
>
,
FastSigHash
>
cache
;
std
::
vector
<
Frame
>
stack
;
DispatcherStack
stack
;
std
::
unordered_map
<
py
::
object
,
std
::
unique_ptr
<
Handler
>
,
ObjectIdHash
>
registry
;
inline
py
::
handle
self
()
{
...
...
@@ -78,7 +95,7 @@ struct Dispatcher {
return
false
;
}
}
stack
.
emplace_back
(
it
->
second
.
get
());
stack
.
emplace_back
_safely
(
it
->
second
.
get
());
return
true
;
}
...
...
@@ -145,7 +162,7 @@ public:
PyErr_SetString
(
PyExc_RuntimeError
,
"super called at top level"
);
return
nullptr
;
}
stack
.
emplace_back
(
stack
.
back
()).
mro_offset
++
;
stack
.
emplace_back
_safely
(
stack
.
back
()).
mro_offset
++
;
return
do_call
([
=
](
PyObject
*
func
){
return
_PyObject_FastCall
(
func
,
const_cast
<
PyObject
**>
(
args
),
nargs
);});
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录