Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
6dfd5a4c
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看板
提交
6dfd5a4c
编写于
7月 04, 2022
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(win7): workaround for hang when progress exit on win7+32bit
GitOrigin-RevId: b49b0b230e6367eea1bc5b0c061915352409fcb3
上级
ba1508e3
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
20 addition
and
0 deletion
+20
-0
src/core/impl/comp_node/cpu/comp_node.cpp
src/core/impl/comp_node/cpu/comp_node.cpp
+10
-0
src/core/impl/utils/thread.cpp
src/core/impl/utils/thread.cpp
+10
-0
未找到文件。
src/core/impl/comp_node/cpu/comp_node.cpp
浏览文件 @
6dfd5a4c
...
...
@@ -620,6 +620,16 @@ class CpuCompNode::CompNodeRecorderImpl final : public CompNodeBaseImpl {
public:
static
void
static_free_device
(
ImplBase
*
self
,
void
*
ptr
)
{
//! FIXME: Windows 7 + 32bit have shared_ptr dtor issue when progress exit
//! as a workaround, skip any task at atexit stage.
#if MGB_HAVE_THREAD
#if defined(WIN32) && defined(__i386__)
if
(
SCQueueSynchronizer
::
is_into_atexit
)
{
mgb_log_warn
(
"windows 32bit issue happened!!, resource recovery by OS!!"
);
return
;
}
#endif
#endif
static_cast
<
CompNodeRecorderImpl
*>
(
self
)
->
free_device
(
ptr
);
}
...
...
src/core/impl/utils/thread.cpp
浏览文件 @
6dfd5a4c
...
...
@@ -112,6 +112,16 @@ SCQueueSynchronizer::SCQueueSynchronizer(size_t max_spin) {
}
SCQueueSynchronizer
::~
SCQueueSynchronizer
()
noexcept
{
#if defined(WIN32) && defined(__i386__)
if
(
SCQueueSynchronizer
::
is_into_atexit
)
{
mgb_log_warn
(
"windows 32bit issue happened!!, resource recovery by OS!!"
);
m_wait_finish_called
=
true
;
//! need detach, if not, thread dtor will crash, OS will recovery thread
//! resource by call std::terminate.
m_worker_thread
.
detach
();
return
;
}
#endif
if
(
!
m_worker_started
)
return
;
if
(
!
m_wait_finish_called
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录