Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
7a705727
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
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看板
未验证
提交
7a705727
编写于
7月 12, 2023
作者:
R
ronnywang
提交者:
GitHub
7月 12, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CustomDevice] fix release error in process_group_custom (#55293)
* [CustomDevice] fix release error for process_group_custom * update
上级
766fcdf0
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
57 addition
and
15 deletion
+57
-15
paddle/fluid/distributed/collective/custom_ccl_tools.h
paddle/fluid/distributed/collective/custom_ccl_tools.h
+1
-1
paddle/fluid/pybind/pybind.cc
paddle/fluid/pybind/pybind.cc
+1
-1
paddle/phi/backends/custom/custom_context.cc
paddle/phi/backends/custom/custom_context.cc
+1
-1
paddle/phi/backends/device_manager.cc
paddle/phi/backends/device_manager.cc
+6
-3
paddle/phi/backends/device_manager.h
paddle/phi/backends/device_manager.h
+1
-1
paddle/phi/backends/event.cc
paddle/phi/backends/event.cc
+22
-4
paddle/phi/backends/event.h
paddle/phi/backends/event.h
+2
-0
paddle/phi/backends/stream.cc
paddle/phi/backends/stream.cc
+21
-4
paddle/phi/backends/stream.h
paddle/phi/backends/stream.h
+2
-0
未找到文件。
paddle/fluid/distributed/collective/custom_ccl_tools.h
浏览文件 @
7a705727
...
@@ -148,7 +148,7 @@ class CustomCCLCommManager {
...
@@ -148,7 +148,7 @@ class CustomCCLCommManager {
~
CustomCCLCommManager
()
noexcept
{
~
CustomCCLCommManager
()
noexcept
{
std
::
unique_lock
<
std
::
mutex
>
lock
(
mutex_
);
std
::
unique_lock
<
std
::
mutex
>
lock
(
mutex_
);
if
(
ccl_comm_
)
{
if
(
phi
::
DeviceManager
::
HasDeviceType
(
device_type_
)
&&
ccl_comm_
)
{
phi
::
DeviceManager
::
CCLDestroyComm
(
device_type_
,
ccl_comm_
);
phi
::
DeviceManager
::
CCLDestroyComm
(
device_type_
,
ccl_comm_
);
}
}
}
}
...
...
paddle/fluid/pybind/pybind.cc
浏览文件 @
7a705727
...
@@ -1021,7 +1021,7 @@ PYBIND11_MODULE(libpaddle, m) {
...
@@ -1021,7 +1021,7 @@ PYBIND11_MODULE(libpaddle, m) {
platform
::
CustomTracer
::
Release
();
platform
::
CustomTracer
::
Release
();
platform
::
CustomDeviceEventResourcePool
::
Release
();
platform
::
CustomDeviceEventResourcePool
::
Release
();
platform
::
CustomDeviceStreamResourcePool
::
Release
();
platform
::
CustomDeviceStreamResourcePool
::
Release
();
phi
::
DeviceManager
::
Clear
();
phi
::
DeviceManager
::
Release
();
#endif
#endif
});
});
...
...
paddle/phi/backends/custom/custom_context.cc
浏览文件 @
7a705727
...
@@ -76,7 +76,7 @@ CustomContext::CustomContext(const CustomPlace& place)
...
@@ -76,7 +76,7 @@ CustomContext::CustomContext(const CustomPlace& place)
impl_
->
Init
();
impl_
->
Init
();
}
}
CustomContext
::~
CustomContext
()
{
impl_
->
Ini
t
();
}
CustomContext
::~
CustomContext
()
{
impl_
.
rese
t
();
}
phi
::
ccl
::
CCLComm
CustomContext
::
xccl_comm
()
const
{
phi
::
ccl
::
CCLComm
CustomContext
::
xccl_comm
()
const
{
return
impl_
->
xccl_comm
();
return
impl_
->
xccl_comm
();
...
...
paddle/phi/backends/device_manager.cc
浏览文件 @
7a705727
...
@@ -343,8 +343,9 @@ std::vector<std::string> DeviceManager::GetAllCustomDeviceList() {
...
@@ -343,8 +343,9 @@ std::vector<std::string> DeviceManager::GetAllCustomDeviceList() {
}
}
bool
DeviceManager
::
HasDeviceType
(
const
std
::
string
&
device_type
)
{
bool
DeviceManager
::
HasDeviceType
(
const
std
::
string
&
device_type
)
{
auto
dev_impl
=
GetDeviceInterfaceWithType
(
device_type
);
phi
::
AutoRDLock
lock
(
&
_global_device_manager_rw_lock
);
return
dev_impl
!=
nullptr
;
auto
&
dev_impl_map
=
Instance
().
device_impl_map_
;
return
dev_impl_map
.
find
(
device_type
)
!=
dev_impl_map
.
end
();
}
}
bool
DeviceManager
::
IsCustom
(
const
std
::
string
&
device_type
)
{
bool
DeviceManager
::
IsCustom
(
const
std
::
string
&
device_type
)
{
...
@@ -670,7 +671,9 @@ DeviceManager& DeviceManager::Instance() {
...
@@ -670,7 +671,9 @@ DeviceManager& DeviceManager::Instance() {
return
platform_manager
;
return
platform_manager
;
}
}
void
DeviceManager
::
Clear
()
{
void
DeviceManager
::
Release
()
{
stream
::
Stream
::
ReleaseAll
();
event
::
Event
::
ReleaseAll
();
Instance
().
device_map_
.
clear
();
Instance
().
device_map_
.
clear
();
Instance
().
device_impl_map_
.
clear
();
Instance
().
device_impl_map_
.
clear
();
}
}
...
...
paddle/phi/backends/device_manager.h
浏览文件 @
7a705727
...
@@ -273,7 +273,7 @@ class DeviceManager {
...
@@ -273,7 +273,7 @@ class DeviceManager {
uint64_t
start_ns
,
uint64_t
start_ns
,
void
*
context
);
void
*
context
);
static
void
Clear
();
static
void
Release
();
private:
private:
DISABLE_COPY_AND_ASSIGN
(
DeviceManager
);
DISABLE_COPY_AND_ASSIGN
(
DeviceManager
);
...
...
paddle/phi/backends/event.cc
浏览文件 @
7a705727
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// See the License for the specific language governing permissions and
// limitations under the License.
// limitations under the License.
#include <list>
#include "paddle/phi/backends/event.h"
#include "paddle/phi/backends/event.h"
#include "glog/logging.h"
#include "glog/logging.h"
...
@@ -22,6 +24,14 @@
...
@@ -22,6 +24,14 @@
namespace
phi
{
namespace
phi
{
namespace
event
{
namespace
event
{
std
::
list
<
Event
*>
g_events
;
void
Event
::
ReleaseAll
()
{
for
(
auto
*
event
:
g_events
)
{
event
->
Destroy
();
}
}
event_t
Event
::
raw_event
()
const
{
return
event_
;
}
event_t
Event
::
raw_event
()
const
{
return
event_
;
}
void
Event
::
set_event
(
event_t
event
)
{
event_
=
event
;
}
void
Event
::
set_event
(
event_t
event
)
{
event_
=
event
;
}
...
@@ -32,7 +42,10 @@ Event::Event(const Place& place, event_t event)
...
@@ -32,7 +42,10 @@ Event::Event(const Place& place, event_t event)
event_
(
event
),
event_
(
event
),
own_data_
(
false
)
{}
own_data_
(
false
)
{}
Event
::~
Event
()
{
Destroy
();
}
Event
::~
Event
()
{
g_events
.
remove
(
this
);
Destroy
();
}
bool
Event
::
Init
(
const
Place
&
place
,
Flag
flags
)
{
bool
Event
::
Init
(
const
Place
&
place
,
Flag
flags
)
{
place_
=
place
;
place_
=
place
;
...
@@ -45,14 +58,19 @@ bool Event::Init(const Place& place, Flag flags) {
...
@@ -45,14 +58,19 @@ bool Event::Init(const Place& place, Flag flags) {
VLOG
(
3
)
<<
"Init Event: "
<<
event_
<<
", place: "
<<
place_
VLOG
(
3
)
<<
"Init Event: "
<<
event_
<<
", place: "
<<
place_
<<
", flag:"
<<
static_cast
<
int
>
(
flags
);
<<
", flag:"
<<
static_cast
<
int
>
(
flags
);
own_data_
=
true
;
own_data_
=
true
;
g_events
.
push_back
(
this
);
return
true
;
return
true
;
}
}
void
Event
::
Destroy
()
{
void
Event
::
Destroy
()
{
if
(
own_data_
)
{
if
(
device_
)
{
phi
::
DeviceManager
::
SetDevice
(
place_
);
if
(
own_data_
)
{
device_
->
DestroyEvent
(
this
);
phi
::
DeviceManager
::
SetDevice
(
place_
);
device_
->
DestroyEvent
(
this
);
}
own_data_
=
false
;
own_data_
=
false
;
event_
=
nullptr
;
device_
=
nullptr
;
}
}
}
}
...
...
paddle/phi/backends/event.h
浏览文件 @
7a705727
...
@@ -49,6 +49,8 @@ class Event {
...
@@ -49,6 +49,8 @@ class Event {
void
Synchronize
()
const
;
void
Synchronize
()
const
;
const
Place
&
GetPlace
()
const
;
const
Place
&
GetPlace
()
const
;
static
void
ReleaseAll
();
private:
private:
DISABLE_COPY_AND_ASSIGN
(
Event
);
DISABLE_COPY_AND_ASSIGN
(
Event
);
Place
place_
;
Place
place_
;
...
...
paddle/phi/backends/stream.cc
浏览文件 @
7a705727
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// See the License for the specific language governing permissions and
// limitations under the License.
// limitations under the License.
#include <list>
#include "paddle/phi/backends/stream.h"
#include "paddle/phi/backends/stream.h"
#include "glog/logging.h"
#include "glog/logging.h"
...
@@ -22,7 +24,18 @@
...
@@ -22,7 +24,18 @@
namespace
phi
{
namespace
phi
{
namespace
stream
{
namespace
stream
{
Stream
::~
Stream
()
{
Destroy
();
}
std
::
list
<
Stream
*>
g_streams
;
void
Stream
::
ReleaseAll
()
{
for
(
auto
*
stream
:
g_streams
)
{
stream
->
Destroy
();
}
}
Stream
::~
Stream
()
{
g_streams
.
remove
(
this
);
Destroy
();
}
const
stream_t
&
Stream
::
raw_stream
()
const
{
return
stream_
;
}
const
stream_t
&
Stream
::
raw_stream
()
const
{
return
stream_
;
}
...
@@ -52,6 +65,7 @@ bool Stream::Init(const Place& place,
...
@@ -52,6 +65,7 @@ bool Stream::Init(const Place& place,
<<
", priority: "
<<
static_cast
<
int
>
(
priority
)
<<
", priority: "
<<
static_cast
<
int
>
(
priority
)
<<
", flag:"
<<
static_cast
<
int
>
(
flag
);
<<
", flag:"
<<
static_cast
<
int
>
(
flag
);
own_data_
=
true
;
own_data_
=
true
;
g_streams
.
push_back
(
this
);
return
true
;
return
true
;
}
}
...
@@ -83,11 +97,14 @@ void Stream::Wait() const {
...
@@ -83,11 +97,14 @@ void Stream::Wait() const {
void
Stream
::
WaitCallback
()
const
{
callback_manager_
->
Wait
();
}
void
Stream
::
WaitCallback
()
const
{
callback_manager_
->
Wait
();
}
void
Stream
::
Destroy
()
{
void
Stream
::
Destroy
()
{
if
(
own_data_
&&
stream_
!=
nullptr
)
{
if
(
device_
)
{
phi
::
DeviceManager
::
SetDevice
(
place_
);
if
(
own_data_
)
{
device_
->
DestroyStream
(
this
);
phi
::
DeviceManager
::
SetDevice
(
place_
);
device_
->
DestroyStream
(
this
);
}
own_data_
=
false
;
own_data_
=
false
;
stream_
=
nullptr
;
stream_
=
nullptr
;
device_
=
nullptr
;
}
}
}
}
...
...
paddle/phi/backends/stream.h
浏览文件 @
7a705727
...
@@ -66,6 +66,8 @@ class Stream {
...
@@ -66,6 +66,8 @@ class Stream {
void
Synchronize
()
const
;
void
Synchronize
()
const
;
const
Place
&
GetPlace
()
const
;
const
Place
&
GetPlace
()
const
;
static
void
ReleaseAll
();
private:
private:
DISABLE_COPY_AND_ASSIGN
(
Stream
);
DISABLE_COPY_AND_ASSIGN
(
Stream
);
Place
place_
;
Place
place_
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录