Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
20725f2d
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
20725f2d
编写于
10月 05, 2017
作者:
Q
qijun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add executor feed operator test
上级
623848af
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
167 addition
and
25 deletion
+167
-25
paddle/framework/executor.cc
paddle/framework/executor.cc
+10
-10
paddle/framework/executor.h
paddle/framework/executor.h
+1
-1
paddle/framework/executor_test.cc
paddle/framework/executor_test.cc
+143
-12
paddle/operators/feed_op.cc
paddle/operators/feed_op.cc
+13
-2
未找到文件。
paddle/framework/executor.cc
浏览文件 @
20725f2d
...
...
@@ -48,8 +48,7 @@ Executor::~Executor() {
}
}
void
Executor
::
Run
(
const
ProgramDesc
&
pdesc
,
Scope
*
scope
,
std
::
vector
<
Tensor
>*
outputs
)
{
void
Executor
::
Run
(
const
ProgramDesc
&
pdesc
,
Scope
*
scope
)
{
// TODO(tonyyang-svail):
// - only runs the first block
// - only runs on the first device
...
...
@@ -76,14 +75,15 @@ void Executor::Run(const ProgramDesc& pdesc, Scope* scope,
device_context
->
Wait
();
}
// // print tensor value
// for (auto& var : block.vars()) {
// std::cout << var.name() << std::endl;
// auto v = scope->FindVar(var.name());
// const LoDTensor& t = v->Get<LoDTensor>();
// for (int i = 0; i < t.numel(); ++i)
// std::cout << t.data<float>()[i] << " ";
// std::cout << std::endl;
// }
for
(
auto
&
var
:
block
.
vars
())
{
std
::
cout
<<
var
.
name
()
<<
std
::
endl
;
auto
v
=
scope
->
FindVar
(
var
.
name
());
const
LoDTensor
&
t
=
v
->
Get
<
LoDTensor
>
();
for
(
int
i
=
0
;
i
<
t
.
numel
();
++
i
)
{
std
::
cout
<<
t
.
data
<
float
>
()[
i
]
<<
" "
;
}
std
::
cout
<<
std
::
endl
;
}
}
}
// namespace framework
...
...
paddle/framework/executor.h
浏览文件 @
20725f2d
...
...
@@ -26,7 +26,7 @@ class Executor {
public:
explicit
Executor
(
const
std
::
vector
<
platform
::
Place
>&
places
);
~
Executor
();
void
Run
(
const
ProgramDesc
&
,
Scope
*
,
std
::
vector
<
Tensor
>*
);
void
Run
(
const
ProgramDesc
&
,
Scope
*
);
private:
std
::
vector
<
platform
::
DeviceContext
*>
device_contexts_
;
...
...
paddle/framework/executor_test.cc
浏览文件 @
20725f2d
...
...
@@ -13,17 +13,18 @@ See the License for the specific language governing permissions and
limitations under the License. */
#include "paddle/framework/executor.h"
#include <memory> // for unique_ptr
#include <mutex> // for call_once
#include <vector>
#include "gtest/gtest.h"
#include "paddle/framework/attribute.h"
#include "paddle/framework/grad_op_builder.h"
#include "paddle/framework/op_registry.h"
#include "paddle/framework/operator.h"
#include <vector>
USE_OP
(
elementwise_add
);
USE_OP
(
gaussian_random
);
USE_OP
(
feed
);
using
std
::
string
;
using
namespace
paddle
::
platform
;
...
...
@@ -58,7 +59,67 @@ void add_gaussian_random_op(string var_name, proto_block* block) {
Out
->
add_arguments
(
var_name
);
}
class
ExecutorTester
:
public
::
testing
::
Test
{
void
add_feed_op
(
string
var_name
,
int
index
,
proto_block
*
block
)
{
std
::
vector
<
int
>
dim
{
3
};
// insert variable
auto
a
=
block
->
add_vars
();
a
->
set_name
(
var_name
);
auto
a_lt
=
a
->
mutable_lod_tensor
();
a_lt
->
set_data_type
(
paddle
::
framework
::
DataType
::
FP32
);
for
(
int
i
:
dim
)
{
a_lt
->
add_dims
(
i
);
}
// insert operation
auto
op
=
block
->
add_ops
();
op
->
set_type
(
"feed"
);
// set dims attr
auto
dims
=
op
->
add_attrs
();
dims
->
set_name
(
"dims"
);
dims
->
set_type
(
paddle
::
framework
::
AttrType
::
INTS
);
for
(
int
i
:
dim
)
{
dims
->
add_ints
(
i
);
}
// set col attr
auto
col
=
op
->
add_attrs
();
col
->
set_name
(
"col"
);
col
->
set_type
(
paddle
::
framework
::
AttrType
::
INT
);
col
->
set_i
(
index
);
auto
Out
=
op
->
add_outputs
();
Out
->
set_parameter
(
"Out"
);
Out
->
add_arguments
(
var_name
);
}
std
::
once_flag
set_variable_flag
;
template
<
typename
T
>
void
set_feed_variable
(
const
std
::
vector
<
std
::
vector
<
T
>>&
inputs
)
{
typedef
std
::
vector
<
paddle
::
framework
::
Tensor
>
FeedInputs
;
Variable
*
g_feed_value
=
GetScope
()
->
FindVar
(
"feed_value"
);
FeedInputs
&
feed_inputs
=
*
(
g_feed_value
->
GetMutable
<
FeedInputs
>
());
auto
size
=
inputs
.
size
();
std
::
call_once
(
set_variable_flag
,
[
&
]()
{
feed_inputs
.
reserve
(
size
);
for
(
size_t
i
=
0
;
i
<
size
;
i
++
)
{
paddle
::
framework
::
Tensor
tmp
;
tmp
.
mutable_data
<
T
>
(
make_ddim
({
static_cast
<
int64_t
>
(
inputs
[
i
].
size
())}),
CPUPlace
());
feed_inputs
.
push_back
(
tmp
);
}
});
for
(
size_t
i
=
0
;
i
<
size
;
i
++
)
{
memcpy
(
feed_inputs
[
i
].
data
<
T
>
(),
inputs
[
i
].
data
(),
inputs
[
i
].
size
()
*
sizeof
(
T
));
}
}
class
ExecutorTesterRandom
:
public
::
testing
::
Test
{
public:
virtual
void
SetUp
()
override
{
auto
root_block
=
pdesc_
.
add_blocks
();
...
...
@@ -84,33 +145,103 @@ class ExecutorTester : public ::testing::Test {
auto
Out
=
op
->
add_outputs
();
Out
->
set_parameter
(
"Out"
);
Out
->
add_arguments
(
"c"
);
scope_
=
GetScope
();
}
protected:
std
::
vector
<
Tensor
>*
outputs_
{
nullptr
};
ProgramDesc
pdesc_
;
Scope
scope_
;
Scope
*
scope_
;
};
TEST_F
(
ExecutorTester
,
InitCPU
)
{
class
ExecutorTesterFeed
:
public
::
testing
::
Test
{
public:
virtual
void
SetUp
()
override
{
auto
root_block
=
pdesc_
.
add_blocks
();
root_block
->
set_idx
(
0
);
root_block
->
set_parent_idx
(
-
1
);
add_feed_op
(
"a"
,
0
,
root_block
);
add_feed_op
(
"b"
,
1
,
root_block
);
auto
c
=
root_block
->
add_vars
();
c
->
set_name
(
"c"
);
auto
c_lt
=
c
->
mutable_lod_tensor
();
c_lt
->
set_data_type
(
paddle
::
framework
::
DataType
::
FP32
);
auto
op
=
root_block
->
add_ops
();
op
->
set_type
(
"elementwise_add"
);
auto
X
=
op
->
add_inputs
();
X
->
set_parameter
(
"X"
);
X
->
add_arguments
(
"a"
);
auto
Y
=
op
->
add_inputs
();
Y
->
set_parameter
(
"Y"
);
Y
->
add_arguments
(
"b"
);
auto
Out
=
op
->
add_outputs
();
Out
->
set_parameter
(
"Out"
);
Out
->
add_arguments
(
"c"
);
std
::
vector
<
float
>
vec1
=
{
1.0
,
2.0
,
3.0
};
std
::
vector
<
float
>
vec2
=
{
4.0
,
5.0
,
6.0
};
inputs_
.
push_back
(
vec1
);
inputs_
.
push_back
(
vec2
);
}
protected:
ProgramDesc
pdesc_
;
std
::
vector
<
std
::
vector
<
float
>>
inputs_
;
};
TEST_F
(
ExecutorTesterRandom
,
CPU
)
{
std
::
vector
<
Place
>
places
;
CPUPlace
cpu_place1
,
cpu_place2
;
places
.
push_back
(
cpu_place1
);
places
.
push_back
(
cpu_place2
);
Executor
*
executor
=
new
Executor
(
places
);
executor
->
Run
(
pdesc_
,
&
scope_
,
outputs_
);
executor
->
Run
(
pdesc_
,
scope_
);
delete
executor
;
}
TEST_F
(
ExecutorTesterFeed
,
CPU
)
{
std
::
vector
<
Place
>
places
;
CPUPlace
cpu_place
;
places
.
push_back
(
cpu_place
);
Executor
*
executor
=
new
Executor
(
places
);
// 3 mini-batch
for
(
int
i
=
0
;
i
<
3
;
i
++
)
{
// need to set feed variable before Executor::Run
set_feed_variable
<
float
>
(
inputs_
);
executor
->
Run
(
pdesc_
,
GetScope
());
}
delete
executor
;
}
#ifdef PADDLE_WITH_GPU
TEST_F
(
ExecutorTester
,
InitGPU
)
{
TEST_F
(
ExecutorTesterRandom
,
GPU
)
{
std
::
vector
<
Place
>
places
;
GPUPlace
gpu_place
(
0
);
places
.
push_back
(
gpu_place
);
Executor
*
executor
=
new
Executor
(
places
);
executor
->
Run
(
pdesc_
,
scope_
);
delete
executor
;
}
TEST_F
(
ExecutorTesterFeed
,
GPU
)
{
std
::
vector
<
Place
>
places
;
GPUPlace
gpu_place
0
(
0
);
places
.
push_back
(
gpu_place
0
);
GPUPlace
gpu_place
(
0
);
places
.
push_back
(
gpu_place
);
Executor
*
executor
=
new
Executor
(
places
);
executor
->
Run
(
pdesc_
,
&
scope_
,
outputs_
);
// need to set feed variable before Executor::Run
set_feed_variable
<
float
>
(
inputs_
);
executor
->
Run
(
pdesc_
,
scope_
);
delete
executor
;
}
#endif
paddle/operators/feed_op.cc
浏览文件 @
20725f2d
...
...
@@ -28,19 +28,30 @@ class FeedOp : public framework::OperatorWithKernel {
int
col
=
ctx
->
Attrs
().
Get
<
int
>
(
"col"
);
framework
::
Variable
*
g_feed_variable
=
framework
::
GetScope
()
->
FindVar
(
"feed_value"
);
FeedInputs
tensors
=
g_feed_variable
->
Get
<
FeedInputs
>
();
auto
in_dim
=
tensors
[
col
].
dims
();
ctx
->
SetOutputDim
(
"
Y
"
,
in_dim
);
ctx
->
SetOutputDim
(
"
Out
"
,
in_dim
);
// need to handle LodTensor later
}
framework
::
DataType
IndicateDataType
(
const
framework
::
ExecutionContext
&
ctx
)
const
override
{
return
static_cast
<
framework
::
DataType
>
(
Attr
<
int
>
(
"data_type"
));
}
};
class
FeedOpMaker
:
public
framework
::
OpProtoAndCheckerMaker
{
public:
FeedOpMaker
(
framework
::
OpProto
*
proto
,
framework
::
OpAttrChecker
*
op_checker
)
:
OpProtoAndCheckerMaker
(
proto
,
op_checker
)
{
AddAttr
<
int
>
(
"col"
,
"The col in Global Feed Variable"
);
AddAttr
<
int
>
(
"data_type"
,
"output data type"
)
.
SetDefault
(
framework
::
DataType
::
FP32
);
AddAttr
<
int
>
(
"col"
,
"The col in global feed variable"
).
SetDefault
(
0
);
AddAttr
<
std
::
vector
<
int
>>
(
"dims"
,
"The dimension of random tensor."
);
AddOutput
(
"Out"
,
"The output of dropout op."
);
AddComment
(
R"DOC(Feed data to global feed variable)DOC"
);
}
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录