Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
114723c9
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
114723c9
编写于
6月 10, 2022
作者:
R
Ruibiao Chen
提交者:
GitHub
6月 10, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Refactor DeviceContextPool (#42901)
* Refactor DeviceContextPool * Adjust header file order
上级
6197fbf6
变更
9
显示空白变更内容
内联
并排
Showing
9 changed file
with
160 addition
and
101 deletion
+160
-101
paddle/fluid/framework/details/fast_threaded_ssa_graph_executor.cc
...uid/framework/details/fast_threaded_ssa_graph_executor.cc
+5
-3
paddle/fluid/framework/details/fast_threaded_ssa_graph_executor.h
...luid/framework/details/fast_threaded_ssa_graph_executor.h
+2
-1
paddle/fluid/framework/details/threaded_ssa_graph_executor.cc
...le/fluid/framework/details/threaded_ssa_graph_executor.cc
+5
-2
paddle/fluid/framework/details/threaded_ssa_graph_executor.h
paddle/fluid/framework/details/threaded_ssa_graph_executor.h
+3
-1
paddle/fluid/framework/new_executor/stream_analyzer.cc
paddle/fluid/framework/new_executor/stream_analyzer.cc
+22
-2
paddle/fluid/framework/new_executor/stream_analyzer.h
paddle/fluid/framework/new_executor/stream_analyzer.h
+10
-7
paddle/fluid/memory/allocation/allocator_facade.cc
paddle/fluid/memory/allocation/allocator_facade.cc
+6
-15
paddle/fluid/platform/device_context.cc
paddle/fluid/platform/device_context.cc
+99
-67
paddle/fluid/platform/device_context.h
paddle/fluid/platform/device_context.h
+8
-3
未找到文件。
paddle/fluid/framework/details/fast_threaded_ssa_graph_executor.cc
浏览文件 @
114723c9
...
...
@@ -39,9 +39,11 @@ FastThreadedSSAGraphExecutor::FastThreadedSSAGraphExecutor(
local_exec_scopes_
(
local_exec_scopes
),
places_
(
places
),
graph_
(
graph
),
fetch_ctxs_
(
places
),
// add one more thread for generate op_deps
prepare_pool_
(
1
)
{
platform
::
EmplaceDeviceContexts
(
&
fetch_ctxs_
,
places
,
/*disable_setting_default_stream_for_allocator=*/
true
);
if
(
ir
::
IsTopologySortOperationsUnique
(
*
graph_
))
{
VLOG
(
10
)
<<
"Change thread number to 1 because the toposort order is unique"
;
...
...
@@ -144,7 +146,7 @@ FetchResultType FastThreadedSSAGraphExecutor::Run(
ClearFetchOp
(
graph_
,
&
fetch_ops
);
for
(
auto
&
place
:
places_
)
{
fetch_ctxs_
.
Get
(
place
)
->
Wait
();
fetch_ctxs_
[
place
].
get
().
get
(
)
->
Wait
();
}
}
...
...
@@ -195,7 +197,7 @@ void FastThreadedSSAGraphExecutor::InsertFetchOps(
fetch_ops
->
emplace_back
(
op
);
for
(
auto
&
p
:
places_
)
{
op
->
SetDeviceContext
(
p
,
fetch_ctxs_
.
Get
(
p
));
op
->
SetDeviceContext
(
p
,
fetch_ctxs_
[
p
].
get
().
get
(
));
}
for
(
auto
*
var
:
vars
)
{
...
...
paddle/fluid/framework/details/fast_threaded_ssa_graph_executor.h
浏览文件 @
114723c9
...
...
@@ -54,7 +54,8 @@ class FastThreadedSSAGraphExecutor : public SSAGraphExecutor {
std
::
unordered_map
<
OpHandleBase
*
,
int
>
op_deps_
;
std
::
vector
<
OpHandleBase
*>
bootstrap_ops_
;
platform
::
DeviceContextPool
fetch_ctxs_
;
std
::
map
<
Place
,
std
::
shared_future
<
std
::
unique_ptr
<
platform
::
DeviceContext
>>>
fetch_ctxs_
;
std
::
atomic
<
int
>
remaining_
;
std
::
future
<
...
...
paddle/fluid/framework/details/threaded_ssa_graph_executor.cc
浏览文件 @
114723c9
...
...
@@ -32,11 +32,14 @@ ThreadedSSAGraphExecutor::ThreadedSSAGraphExecutor(
local_scopes_
(
local_scopes
),
local_exec_scopes_
(
local_exec_scopes
),
places_
(
places
),
fetch_ctxs_
(
places
),
strategy_
(
strategy
),
prepare_pool_
(
1
),
pool_
(
strategy
.
num_threads_
>=
2
?
new
::
ThreadPool
(
strategy
.
num_threads_
)
:
nullptr
)
{
platform
::
EmplaceDeviceContexts
(
&
fetch_ctxs_
,
places
,
/*disable_setting_default_stream_for_allocator=*/
true
);
if
(
strategy_
.
num_iteration_per_run_
>
1
)
{
int
read_op_num
=
0
;
for
(
auto
*
node
:
graph_
->
Nodes
())
{
...
...
@@ -207,7 +210,7 @@ void ThreadedSSAGraphExecutor::InsertFetchOps(
fetch_ops
->
emplace_back
(
op
);
for
(
auto
&
p
:
places_
)
{
op
->
SetDeviceContext
(
p
,
fetch_ctxs_
.
Get
(
p
));
op
->
SetDeviceContext
(
p
,
fetch_ctxs_
[
p
].
get
().
get
(
));
}
for
(
auto
*
var
:
vars
)
{
...
...
paddle/fluid/framework/details/threaded_ssa_graph_executor.h
浏览文件 @
114723c9
...
...
@@ -77,7 +77,9 @@ class ThreadedSSAGraphExecutor : public SSAGraphExecutor {
std
::
vector
<
Scope
*>
local_exec_scopes_
;
std
::
vector
<
platform
::
Place
>
places_
;
platform
::
DeviceContextPool
fetch_ctxs_
;
std
::
map
<
Place
,
std
::
shared_future
<
std
::
unique_ptr
<
platform
::
DeviceContext
>>>
fetch_ctxs_
;
ExceptionHolder
exception_holder_
;
std
::
unique_ptr
<
OpDependentData
>
op_deps_
;
std
::
future
<
std
::
unique_ptr
<
OpDependentData
>>
op_deps_futures_
;
...
...
paddle/fluid/framework/new_executor/stream_analyzer.cc
浏览文件 @
114723c9
...
...
@@ -14,11 +14,31 @@
#include "paddle/fluid/framework/new_executor/stream_analyzer.h"
#include <future>
#include <unordered_set>
#include "paddle/fluid/platform/device_context.h"
namespace
paddle
{
namespace
framework
{
StreamAnalyzer
::
StreamAnalyzer
(
const
platform
::
Place
&
place
)
:
place_
(
place
)
{
if
(
platform
::
is_gpu_place
(
place
))
{
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
platform
::
EmplaceDeviceContexts
(
&
d2h_ctxs_
,
{
place
},
/*disable_setting_default_stream_for_allocator=*/
true
);
platform
::
EmplaceDeviceContexts
(
&
h2d_ctxs_
,
{
place
},
/*disable_setting_default_stream_for_allocator=*/
true
);
#else
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"CUDAPlace is not supported. Please "
"re-compile with WITH_GPU option."
));
#endif
}
}
/*
* Parse the var_ids that need to be associated with an event.
* The caller should guarantee front_op and back_op satisfy the
...
...
@@ -137,10 +157,10 @@ platform::DeviceContext* StreamAnalyzer::ParseDeviceContext(
auto
*
dev_ctx
=
op_func_node
.
dev_ctx_
;
if
(
op_type
==
interpreter
::
kMemcpyD2H
)
{
VLOG
(
3
)
<<
"Get dev_ctx from d2h_context_pool_"
;
dev_ctx
=
d2h_ctx
_pool_
.
Get
(
place_
);
dev_ctx
=
d2h_ctx
s_
[
place_
].
get
().
get
(
);
}
else
if
(
op_type
==
interpreter
::
kMemcpyH2D
)
{
VLOG
(
3
)
<<
"Get dev_ctx from h2d_context_pool_"
;
dev_ctx
=
h2d_ctx
_pool_
.
Get
(
place_
);
dev_ctx
=
h2d_ctx
s_
[
place_
].
get
().
get
(
);
}
return
dev_ctx
;
...
...
paddle/fluid/framework/new_executor/stream_analyzer.h
浏览文件 @
114723c9
...
...
@@ -13,6 +13,7 @@
// limitations under the License.
#pragma once
#include <future>
#include <memory>
#include <vector>
...
...
@@ -25,15 +26,17 @@ namespace framework {
class
StreamAnalyzer
{
public:
explicit
StreamAnalyzer
(
const
platform
::
Place
&
place
)
:
place_
(
place
),
d2h_ctx_pool_
({
place
}),
h2d_ctx_pool_
({
place
})
{}
using
Place
=
platform
::
Place
;
using
DeviceContext
=
platform
::
DeviceContext
;
explicit
StreamAnalyzer
(
const
Place
&
place
);
~
StreamAnalyzer
()
{}
void
Schedule
(
const
std
::
vector
<
size_t
>&
downstream_ops
,
std
::
vector
<
Instruction
>*
instructions
,
size_t
op_index
);
platform
::
DeviceContext
*
ParseDeviceContext
(
const
OpFuncNode
&
op_func_node
);
DeviceContext
*
ParseDeviceContext
(
const
OpFuncNode
&
op_func_node
);
private:
std
::
vector
<
size_t
>
GetNeedEventVarIds
(
const
Instruction
&
cur_instr
,
...
...
@@ -42,16 +45,16 @@ class StreamAnalyzer {
void
ConstructEventForVar
(
const
std
::
vector
<
size_t
>&
new_event_var_id
,
Instruction
*
next_instr
,
platform
::
DeviceType
waiter_type
,
const
platform
::
Place
&
place
);
const
Place
&
place
);
bool
IsDirectRun
(
Instruction
&
cur_instr
,
// NOLINT
const
Instruction
&
next_instr
);
platform
::
DeviceType
GetWaiterType
(
const
Instruction
&
instr
);
platform
::
Place
place_
;
platform
::
DeviceContextPool
d2h_ctx_pool
_
;
platform
::
DeviceContextPool
h2d_ctx_pool
_
;
Place
place_
;
std
::
map
<
Place
,
std
::
shared_future
<
std
::
unique_ptr
<
DeviceContext
>>>
d2h_ctxs
_
;
std
::
map
<
Place
,
std
::
shared_future
<
std
::
unique_ptr
<
DeviceContext
>>>
h2d_ctxs
_
;
std
::
map
<
size_t
,
std
::
shared_ptr
<
platform
::
DeviceEvent
>>
var_id2event_
;
};
...
...
paddle/fluid/memory/allocation/allocator_facade.cc
浏览文件 @
114723c9
...
...
@@ -419,21 +419,12 @@ class AllocatorFacadePrivate {
const
std
::
shared_ptr
<
StreamSafeCUDAAllocator
>&
allocator
=
GetDefaultStreamSafeCUDAAllocator
(
place
);
// NOTE(Ruibiao): The default stream will be set when the CUDADeviceContext
// created. Normally, the DeviceContextPool is a global singleton and one
// Place only correspond to one DeviceContext. However, to support
// multi-stream scheduling, standalone executor creates two extra
// DeviceContextPools for H2D and D2H stream in StreamAnalyzer, which make
// one Place correspond to multiple DeviceContext and unexpectedly reset the
// default stream in runtime. To avoid this behavior, we do not allow
// changing default stream after initially setting.
if
(
allocator
->
GetDefaultStream
()
!=
nullptr
)
{
VLOG
(
5
)
<<
"The default stream for StreamSafeCUDAAllocator("
<<
allocator
.
get
()
<<
") in "
<<
place
<<
" has been set to "
<<
allocator
->
GetDefaultStream
()
<<
" before, not allow to change now."
;
return
;
}
PADDLE_ENFORCE_EQ
(
allocator
->
GetDefaultStream
(),
nullptr
,
platform
::
errors
::
Unavailable
(
"The default stream for StreamSafeCUDAAllocator(%p) in %s has been "
"set to %p, not allow to change it to %p."
,
allocator
.
get
(),
place
,
allocator
->
GetDefaultStream
(),
stream
));
allocator
->
SetDefaultStream
(
stream
);
VLOG
(
8
)
<<
"Set default stream to "
<<
stream
...
...
paddle/fluid/platform/device_context.cc
浏览文件 @
114723c9
...
...
@@ -11,13 +11,21 @@ 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. */
#include "paddle/fluid/platform/device_context.h"
#include <functional>
#include <memory>
#include <set>
#include "glog/logging.h"
#include "paddle/fluid/framework/expect.h"
#include "paddle/fluid/framework/generator.h"
#include "paddle/fluid/memory/allocation/allocator_facade.h"
#include "paddle/fluid/platform/device/device_wrapper.h"
#include "paddle/fluid/platform/place.h"
#include "paddle/fluid/platform/profiler.h"
#include "paddle/fluid/platform/profiler/event_tracing.h"
#include "paddle/fluid/platform/stream/cuda_stream.h"
#include "paddle/phi/backends/gpu/gpu_context.h"
#include "paddle/phi/core/allocator.h"
...
...
@@ -26,17 +34,11 @@ limitations under the License. */
#include "paddle/fluid/memory/allocation/cuda_device_context_allocator.h"
#include "paddle/fluid/platform/cuda_device_guard.h"
#endif
#ifdef PADDLE_WITH_MLU
#include "paddle/fluid/platform/device/mlu/device_context.h"
#include "paddle/fluid/platform/device/mlu/device_context_allocator.h"
#endif
#include "glog/logging.h"
#include "paddle/fluid/framework/expect.h"
#include "paddle/fluid/framework/generator.h"
#include "paddle/fluid/memory/allocation/allocator_facade.h"
#include "paddle/fluid/platform/device/device_wrapper.h"
#include "paddle/fluid/platform/profiler.h"
#include "paddle/fluid/platform/profiler/event_tracing.h"
namespace
paddle
{
namespace
memory
{
...
...
@@ -178,15 +180,10 @@ void DeviceContextPool::SetDeviceContexts(
}
template
<
typename
DevCtx
>
inline
void
EmplaceDeviceContext
(
std
::
map
<
Place
,
std
::
shared_future
<
std
::
unique_ptr
<
DeviceContext
>>>*
map_ptr
,
platform
::
Place
p
)
{
std
::
unique_ptr
<
DeviceContext
>
CreateDeviceContext
(
const
platform
::
Place
&
p
,
bool
disable_setting_default_stream_for_allocator
=
false
)
{
using
PtrType
=
std
::
unique_ptr
<
DeviceContext
>
;
map_ptr
->
emplace
(
p
,
std
::
async
(
std
::
launch
::
deferred
,
[
=
]
{
// lazy evaluation. i.e., only create device context at
// first `Get`
auto
*
dev_ctx
=
new
DevCtx
(
p
);
if
(
is_gpu_place
(
p
))
{
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
...
...
@@ -195,58 +192,77 @@ inline void EmplaceDeviceContext(
cuda_ctx
,
platform
::
errors
::
InvalidArgument
(
"Failed to dynamic_cast dev_ctx into CUDADeviceContext."
));
dev_ctx
->
SetAllocator
(
memory
::
allocation
::
AllocatorFacade
::
Instance
()
.
GetAllocator
(
p
)
.
get
());
auto
&
instance
=
memory
::
allocation
::
AllocatorFacade
::
Instance
();
if
(
!
disable_setting_default_stream_for_allocator
)
{
instance
.
SetDefaultStream
(
CUDAPlace
(
p
.
GetDeviceId
()),
cuda_ctx
->
stream
());
}
dev_ctx
->
SetAllocator
(
instance
.
GetAllocator
(
p
).
get
());
dev_ctx
->
SetPinnedAllocator
(
memory
::
allocation
::
AllocatorFacade
::
Instance
()
.
GetAllocator
(
paddle
::
platform
::
CUDAPinnedPlace
())
.
get
());
instance
.
GetAllocator
(
paddle
::
platform
::
CUDAPinnedPlace
()).
get
());
cuda_ctx
->
PartialInitWithAllocator
();
dev_ctx
->
SetGenerator
(
framework
::
DefaultCUDAGenerator
(
p
.
GetDeviceId
()).
get
());
#endif
}
else
{
dev_ctx
->
SetAllocator
(
memory
::
allocation
::
AllocatorFacade
::
Instance
()
.
GetAllocator
(
p
)
.
get
());
dev_ctx
->
SetAllocator
(
memory
::
allocation
::
AllocatorFacade
::
Instance
().
GetAllocator
(
p
).
get
());
dev_ctx
->
SetGenerator
(
framework
::
DefaultCPUGenerator
().
get
());
}
dev_ctx
->
SetHostGenerator
(
framework
::
DefaultCPUGenerator
().
get
());
dev_ctx
->
SetHostAllocator
(
memory
::
allocation
::
AllocatorFacade
::
Instance
()
dev_ctx
->
SetHostAllocator
(
memory
::
allocation
::
AllocatorFacade
::
Instance
()
.
GetAllocator
(
platform
::
CPUPlace
())
.
get
());
dev_ctx
->
SetZeroAllocator
(
memory
::
allocation
::
AllocatorFacade
::
Instance
()
dev_ctx
->
SetZeroAllocator
(
memory
::
allocation
::
AllocatorFacade
::
Instance
()
.
GetZeroAllocator
(
p
)
.
get
());
return
PtrType
(
dev_ctx
);
}));
}
DeviceContextPool
::
DeviceContextPool
(
const
std
::
vector
<
platform
::
Place
>&
places
)
{
template
<
typename
DevCtx
>
inline
void
EmplaceDeviceContext
(
std
::
map
<
Place
,
std
::
shared_future
<
std
::
unique_ptr
<
DeviceContext
>>>*
place_to_device_context
,
platform
::
Place
place
,
bool
disable_setting_default_stream_for_allocator
)
{
// lazy evaluation. i.e., only create device context at first `Get`
place_to_device_context
->
emplace
(
place
,
std
::
async
(
std
::
launch
::
deferred
,
CreateDeviceContext
<
DevCtx
>
,
place
,
disable_setting_default_stream_for_allocator
));
}
void
EmplaceDeviceContexts
(
std
::
map
<
Place
,
std
::
shared_future
<
std
::
unique_ptr
<
DeviceContext
>>>*
place_to_device_context
,
const
std
::
vector
<
platform
::
Place
>&
places
,
bool
disable_setting_default_stream_for_allocator
)
{
PADDLE_ENFORCE_GT
(
places
.
size
(),
0
,
platform
::
errors
::
InvalidArgument
(
"The number of platform places should "
"be larger than 0. But received %d."
,
places
.
size
()));
std
::
set
<
Place
>
set
;
for
(
auto
&
p
:
places
)
{
set
.
insert
(
p
);
}
for
(
auto
&
p
:
set
)
{
if
(
platform
::
is_cpu_place
(
p
))
{
#ifdef PADDLE_WITH_MKLDNN
EmplaceDeviceContext
<
MKLDNNDeviceContext
>
(
&
device_contexts_
,
p
);
EmplaceDeviceContext
<
MKLDNNDeviceContext
>
(
place_to_device_context
,
p
,
disable_setting_default_stream_for_allocator
);
#else
EmplaceDeviceContext
<
CPUDeviceContext
>
(
&
device_contexts_
,
p
);
EmplaceDeviceContext
<
CPUDeviceContext
>
(
place_to_device_context
,
p
,
disable_setting_default_stream_for_allocator
);
#endif
}
else
if
(
platform
::
is_gpu_place
(
p
))
{
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
EmplaceDeviceContext
<
CUDADeviceContext
>
(
&
device_contexts_
,
p
);
EmplaceDeviceContext
<
CUDADeviceContext
>
(
place_to_device_context
,
p
,
disable_setting_default_stream_for_allocator
);
#else
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"CUDAPlace is not supported. Please "
...
...
@@ -254,7 +270,9 @@ DeviceContextPool::DeviceContextPool(
#endif
}
else
if
(
platform
::
is_cuda_pinned_place
(
p
))
{
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
EmplaceDeviceContext
<
CUDAPinnedDeviceContext
>
(
&
device_contexts_
,
p
);
EmplaceDeviceContext
<
CUDAPinnedDeviceContext
>
(
place_to_device_context
,
p
,
disable_setting_default_stream_for_allocator
);
#else
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"CUDAPlace is not supported. Please re-compile with WITH_GPU "
...
...
@@ -262,7 +280,9 @@ DeviceContextPool::DeviceContextPool(
#endif
}
else
if
(
platform
::
is_xpu_place
(
p
))
{
#ifdef PADDLE_WITH_XPU
EmplaceDeviceContext
<
XPUDeviceContext
>
(
&
device_contexts_
,
p
);
EmplaceDeviceContext
<
XPUDeviceContext
>
(
place_to_device_context
,
p
,
disable_setting_default_stream_for_allocator
);
#else
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"XPUPlace is not supported. Please "
...
...
@@ -270,7 +290,9 @@ DeviceContextPool::DeviceContextPool(
#endif
}
else
if
(
platform
::
is_mlu_place
(
p
))
{
#ifdef PADDLE_WITH_MLU
EmplaceDeviceContext
<
MLUDeviceContext
>
(
&
device_contexts_
,
p
);
EmplaceDeviceContext
<
MLUDeviceContext
>
(
place_to_device_context
,
p
,
disable_setting_default_stream_for_allocator
);
#else
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"MLUPlace is not supported. Please "
...
...
@@ -278,7 +300,9 @@ DeviceContextPool::DeviceContextPool(
#endif
}
else
if
(
platform
::
is_ipu_place
(
p
))
{
#ifdef PADDLE_WITH_IPU
EmplaceDeviceContext
<
IPUDeviceContext
>
(
&
device_contexts_
,
p
);
EmplaceDeviceContext
<
IPUDeviceContext
>
(
place_to_device_context
,
p
,
disable_setting_default_stream_for_allocator
);
#else
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"IPUPlace is not supported. Please "
...
...
@@ -286,7 +310,9 @@ DeviceContextPool::DeviceContextPool(
#endif
}
else
if
(
platform
::
is_npu_place
(
p
))
{
#ifdef PADDLE_WITH_ASCEND_CL
EmplaceDeviceContext
<
NPUDeviceContext
>
(
&
device_contexts_
,
p
);
EmplaceDeviceContext
<
NPUDeviceContext
>
(
place_to_device_context
,
p
,
disable_setting_default_stream_for_allocator
);
#else
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"NPUPlace is not supported. Please "
...
...
@@ -294,7 +320,9 @@ DeviceContextPool::DeviceContextPool(
#endif
}
else
if
(
platform
::
is_npu_pinned_place
(
p
))
{
#ifdef PADDLE_WITH_ASCEND_CL
EmplaceDeviceContext
<
NPUPinnedDeviceContext
>
(
&
device_contexts_
,
p
);
EmplaceDeviceContext
<
NPUPinnedDeviceContext
>
(
place_to_device_context
,
p
,
disable_setting_default_stream_for_allocator
);
#else
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"NPUPinnedPlace is not supported. Please re-compile with "
...
...
@@ -303,7 +331,9 @@ DeviceContextPool::DeviceContextPool(
#endif
}
else
if
(
platform
::
is_custom_place
(
p
))
{
#ifdef PADDLE_WITH_CUSTOM_DEVICE
EmplaceDeviceContext
<
CustomDeviceContext
>
(
&
device_contexts_
,
p
);
EmplaceDeviceContext
<
CustomDeviceContext
>
(
place_to_device_context
,
p
,
disable_setting_default_stream_for_allocator
);
#else
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"CustomPlace is not supported. Please re-compile with "
...
...
@@ -314,6 +344,12 @@ DeviceContextPool::DeviceContextPool(
}
}
DeviceContextPool
::
DeviceContextPool
(
const
std
::
vector
<
platform
::
Place
>&
places
)
{
EmplaceDeviceContexts
(
&
device_contexts_
,
places
,
/*disable_setting_default_stream_for_allocator=*/
false
);
}
CPUDeviceContext
::
CPUDeviceContext
()
:
phi
::
CPUContext
()
{
phi
::
CPUContext
::
Init
();
}
...
...
@@ -556,10 +592,6 @@ CUDAContext::~CUDAContext() {
CUDADeviceContext
::
CUDADeviceContext
(
CUDAPlace
place
)
:
phi
::
GPUContext
(
place
)
{
phi
::
GPUContext
::
PartialInitWithoutAllocator
();
cuda_stream_
.
reset
(
new
stream
::
CUDAStream
(
phi
::
GPUContext
::
stream
(),
place
));
auto
&
instance
=
memory
::
allocation
::
AllocatorFacade
::
Instance
();
instance
.
SetDefaultStream
(
place
,
phi
::
GPUContext
::
stream
());
workspace_
.
reset
(
new
phi
::
DnnWorkspaceHandle
(
instance
.
GetAllocator
(
place
).
get
(),
stream
()));
}
CUDADeviceContext
::~
CUDADeviceContext
()
=
default
;
...
...
paddle/fluid/platform/device_context.h
浏览文件 @
114723c9
...
...
@@ -645,7 +645,6 @@ class CUDADeviceContext : public phi::GPUContext {
// NOTE: Just for compatibility with the past, please delete if there is an
// elegant way.
std
::
unique_ptr
<
stream
::
CUDAStream
>
cuda_stream_
;
std
::
unique_ptr
<
phi
::
DnnWorkspaceHandle
>
workspace_
{
nullptr
};
DISABLE_COPY_AND_ASSIGN
(
CUDADeviceContext
);
};
...
...
@@ -883,11 +882,15 @@ struct DefaultDeviceContextType<platform::CustomPlace> {
};
#endif
void
EmplaceDeviceContexts
(
std
::
map
<
Place
,
std
::
shared_future
<
std
::
unique_ptr
<
DeviceContext
>>>*
place_to_device_context
,
const
std
::
vector
<
platform
::
Place
>&
places
,
bool
disable_setting_default_stream_for_allocator
);
/*! \brief device context pool singleton */
class
DeviceContextPool
{
public:
explicit
DeviceContextPool
(
const
std
::
vector
<
platform
::
Place
>&
places
);
static
DeviceContextPool
&
Instance
()
{
PADDLE_ENFORCE_NOT_NULL
(
pool
,
platform
::
errors
::
PreconditionNotMet
(
...
...
@@ -925,6 +928,8 @@ class DeviceContextPool {
std
::
shared_future
<
std
::
unique_ptr
<
DeviceContext
>>>*
);
private:
explicit
DeviceContextPool
(
const
std
::
vector
<
platform
::
Place
>&
places
);
static
DeviceContextPool
*
pool
;
std
::
map
<
Place
,
std
::
shared_future
<
std
::
unique_ptr
<
DeviceContext
>>>
device_contexts_
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录