Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
26cfc634
P
PaddleDetection
项目概览
s920243400
/
PaddleDetection
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleDetection
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
26cfc634
编写于
4月 12, 2018
作者:
T
typhoonzero
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
multi stream thread pool
上级
70500398
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
13 addition
and
10 deletion
+13
-10
paddle/fluid/framework/threadpool.cc
paddle/fluid/framework/threadpool.cc
+7
-3
paddle/fluid/framework/threadpool.h
paddle/fluid/framework/threadpool.h
+5
-5
paddle/fluid/operators/detail/grpc_server.cc
paddle/fluid/operators/detail/grpc_server.cc
+1
-1
python/paddle/fluid/tests/book/test_recognize_digits.py
python/paddle/fluid/tests/book/test_recognize_digits.py
+0
-1
未找到文件。
paddle/fluid/framework/threadpool.cc
浏览文件 @
26cfc634
...
...
@@ -14,8 +14,12 @@
#include "paddle/fluid/framework/threadpool.h"
#include "gflags/gflags.h"
#include "paddle/fluid/platform/enforce.h"
DEFINE_int32
(
io_threadpool_size
,
100
,
"number of threads used for doing IO, default 100"
);
namespace
paddle
{
namespace
framework
{
...
...
@@ -94,15 +98,15 @@ void ThreadPool::TaskLoop() {
std
::
unique_ptr
<
ThreadPool
>
MultiStreamThreadPool
::
io_threadpool_
(
nullptr
);
std
::
once_flag
MultiStreamThreadPool
::
io_init_flag_
;
MultiStream
ThreadPool
*
MultiStreamThreadPool
::
GetInstanceIO
()
{
ThreadPool
*
MultiStreamThreadPool
::
GetInstanceIO
()
{
std
::
call_once
(
io_init_flag_
,
&
MultiStreamThreadPool
::
InitIO
);
return
static_cast
<
MultiStreamThreadPool
*>
(
io_threadpool_
.
get
()
);
return
io_threadpool_
.
get
(
);
}
void
MultiStreamThreadPool
::
InitIO
()
{
if
(
io_threadpool_
.
get
()
==
nullptr
)
{
// TODO(typhoonzero1986): make this configurable
io_threadpool_
.
reset
(
new
ThreadPool
(
100
));
io_threadpool_
.
reset
(
new
ThreadPool
(
FLAGS_io_threadpool_size
));
}
}
...
...
paddle/fluid/framework/threadpool.h
浏览文件 @
26cfc634
...
...
@@ -14,12 +14,12 @@ limitations under the License. */
#pragma once
#include <condition_variable>
#include <condition_variable>
// NOLINT
#include <functional>
#include <future>
#include <mutex>
#include <future>
// NOLINT
#include <mutex>
// NOLINT
#include <queue>
#include <thread>
#include <thread>
// NOLINT
#include <vector>
#include "glog/logging.h"
#include "paddle/fluid/platform/enforce.h"
...
...
@@ -137,7 +137,7 @@ class ThreadPool {
class
MultiStreamThreadPool
:
ThreadPool
{
public:
static
MultiStream
ThreadPool
*
GetInstanceIO
();
static
ThreadPool
*
GetInstanceIO
();
static
void
InitIO
();
private:
...
...
paddle/fluid/operators/detail/grpc_server.cc
浏览文件 @
26cfc634
...
...
@@ -216,10 +216,10 @@ void AsyncGRPCServer::RunSyncUpdate() {
std
::
function
<
void
()
>
prefetch_register
=
std
::
bind
(
&
AsyncGRPCServer
::
TryToRegisterNewPrefetchOne
,
this
);
// TODO(wuyi): Run these "HandleRequest" in thread pool
t_send_
.
reset
(
new
std
::
thread
(
std
::
bind
(
&
AsyncGRPCServer
::
HandleRequest
,
this
,
cq_send_
.
get
(),
"cq_send"
,
send_register
)));
t_get_
.
reset
(
new
std
::
thread
(
std
::
bind
(
&
AsyncGRPCServer
::
HandleRequest
,
this
,
cq_get_
.
get
(),
"cq_get"
,
get_register
)));
...
...
python/paddle/fluid/tests/book/test_recognize_digits.py
浏览文件 @
26cfc634
...
...
@@ -157,7 +157,6 @@ def train(nn_type,
for
ip
in
pserver_ips
.
split
(
","
):
eplist
.
append
(
':'
.
join
([
ip
,
port
]))
pserver_endpoints
=
","
.
join
(
eplist
)
# ip:port,ip:port...
pserver_endpoints
=
os
.
getenv
(
"PSERVERS"
)
trainers
=
int
(
os
.
getenv
(
"TRAINERS"
))
current_endpoint
=
os
.
getenv
(
"POD_IP"
)
+
":"
+
port
trainer_id
=
int
(
os
.
getenv
(
"PADDLE_INIT_TRAINER_ID"
))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录