Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
0efda9d9
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
0efda9d9
编写于
8月 26, 2021
作者:
W
wanghuancoder
提交者:
GitHub
8月 26, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
use spinlock in auto growth (#35139)
* use spinlock in auto growth, test=develop * refine,test=develop
上级
b3ef9a68
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
58 addition
and
3 deletion
+58
-3
paddle/fluid/memory/allocation/auto_growth_best_fit_allocator.cc
...fluid/memory/allocation/auto_growth_best_fit_allocator.cc
+2
-2
paddle/fluid/memory/allocation/auto_growth_best_fit_allocator.h
.../fluid/memory/allocation/auto_growth_best_fit_allocator.h
+2
-1
paddle/fluid/memory/allocation/spin_lock.h
paddle/fluid/memory/allocation/spin_lock.h
+54
-0
未找到文件。
paddle/fluid/memory/allocation/auto_growth_best_fit_allocator.cc
浏览文件 @
0efda9d9
...
...
@@ -45,7 +45,7 @@ AutoGrowthBestFitAllocator::AutoGrowthBestFitAllocator(
Allocation
*
AutoGrowthBestFitAllocator
::
AllocateImpl
(
size_t
size
)
{
size
=
AlignedSize
(
size
,
alignment_
);
std
::
lock_guard
<
std
::
mutex
>
guard
(
mtx
_
);
std
::
lock_guard
<
SpinLock
>
guard
(
spinlock
_
);
auto
iter
=
free_blocks_
.
lower_bound
(
std
::
make_pair
(
size
,
nullptr
));
BlockIt
block_it
;
if
(
iter
!=
free_blocks_
.
end
())
{
...
...
@@ -98,7 +98,7 @@ Allocation *AutoGrowthBestFitAllocator::AllocateImpl(size_t size) {
}
void
AutoGrowthBestFitAllocator
::
FreeImpl
(
Allocation
*
allocation
)
{
std
::
lock_guard
<
std
::
mutex
>
guard
(
mtx
_
);
std
::
lock_guard
<
SpinLock
>
guard
(
spinlock
_
);
auto
block_it
=
static_cast
<
BlockAllocation
*>
(
allocation
)
->
block_it_
;
auto
&
blocks
=
block_it
->
chunk_
->
blocks_
;
...
...
paddle/fluid/memory/allocation/auto_growth_best_fit_allocator.h
浏览文件 @
0efda9d9
...
...
@@ -21,6 +21,7 @@
#include <utility>
#include "paddle/fluid/memory/allocation/allocator.h"
#include "paddle/fluid/memory/allocation/spin_lock.h"
namespace
paddle
{
namespace
memory
{
...
...
@@ -86,7 +87,7 @@ class AutoGrowthBestFitAllocator : public Allocator {
size_t
alignment_
;
size_t
chunk_size_
;
mutable
std
::
mutex
mtx
_
;
SpinLock
spinlock
_
;
};
}
// namespace allocation
...
...
paddle/fluid/memory/allocation/spin_lock.h
0 → 100644
浏览文件 @
0efda9d9
// Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include <atomic>
#if !defined(_WIN32)
#include <sched.h>
#else
#include <windows.h>
#endif // !_WIN32
namespace
paddle
{
namespace
memory
{
class
SpinLock
{
public:
SpinLock
()
:
mlock_
(
false
)
{}
void
lock
()
{
bool
expect
=
false
;
uint64_t
spin_cnt
=
0
;
while
(
!
mlock_
.
compare_exchange_weak
(
expect
,
true
))
{
expect
=
false
;
if
((
++
spin_cnt
&
0xFF
)
==
0
)
{
#if defined(_WIN32)
SleepEx
(
50
,
FALSE
);
#else
sched_yield
();
#endif
}
}
}
void
unlock
()
{
mlock_
.
store
(
false
);
}
DISABLE_COPY_AND_ASSIGN
(
SpinLock
);
private:
std
::
atomic
<
bool
>
mlock_
;
};
}
// namespace memory
}
// namespace paddle
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录