Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
255ceeec
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
332
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
255ceeec
编写于
5月 19, 2018
作者:
E
eclipsycn
提交者:
GitHub
5月 19, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #201 from Eclipsess/develop
fix
#200
change op test file (add,mul)
上级
45de1e84
e6459329
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
19 addition
and
100 deletion
+19
-100
test/CMakeLists.txt
test/CMakeLists.txt
+9
-4
test/main.cpp
test/main.cpp
+0
-83
test/operators/test_elementwise_add_op.cpp
test/operators/test_elementwise_add_op.cpp
+5
-7
test/operators/test_mul_op.cpp
test/operators/test_mul_op.cpp
+5
-6
未找到文件。
test/CMakeLists.txt
浏览文件 @
255ceeec
# gen test
ADD_EXECUTABLE
(
paddle-mobile-test main.cpp test_helper.h elementwise_add_op_test.h test_include.h mul_op_test.h
)
target_link_libraries
(
paddle-mobile-test paddle-mobile
)
# gen test
ADD_EXECUTABLE
(
test-conv-op operators/test_cov_op.cpp test_helper.h test_include.h
)
target_link_libraries
(
test-conv-op paddle-mobile
)
# gen test
ADD_EXECUTABLE
(
test-mul-op operators/test_mul_op.cpp test_helper.h test_include.h
)
target_link_libraries
(
test-mul-op paddle-mobile
)
# gen test
ADD_EXECUTABLE
(
test-elementwiseadd-op operators/test_elementwise_add_op.cpp test_helper.h test_include.h
)
target_link_libraries
(
test-elementwiseadd-op paddle-mobile
)
# gen test log
ADD_EXECUTABLE
(
test-log common/test_log.cpp
)
target_link_libraries
(
test-log paddle-mobile
)
...
...
test/main.cpp
已删除
100644 → 0
浏览文件 @
45de1e84
/* Copyright (c) 2016 Baidu, Inc. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
==============================================================================*/
#include "elementwise_add_op_test.h"
#include "framework/executor.h"
#include "io.h"
#include "mul_op_test.h"
#include "test_helper.h"
//
// template <typename T>
// void SetupTensor(paddle::framework::LoDTensor* input,
// paddle::framework::DDim dims, T lower, T upper) {
// static unsigned int seed = 100;
// std::mt19937 rng(seed++);
// std::uniform_real_distribution<double> uniform_dist(0, 1);
//
// T* input_ptr = input->mutable_data<T>(dims, paddle::platform::CPUPlace());
// for (int i = 0; i < input->numel(); ++i) {
// input_ptr[i] = static_cast<T>(uniform_dist(rng) * (upper - lower) +
// lower);
// }
//}
int
main
()
{
std
::
string
data_set
=
"cifar10"
;
//
// if (data_set == "cifar10") {
// SetupTensor<float>(&input, {FLAGS_batch_size, 3, 32, 32},
// static_cast<float>(0), static_cast<float>(1));
// } else if (data_set == "imagenet") {
// SetupTensor<float>(&input, {FLAGS_batch_size, 3, 224, 224},
// static_cast<float>(0), static_cast<float>(1));
// } else {
// LOG(FATAL) << "Only cifar10 or imagenet is supported.";
// }
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
auto
program
=
loader
.
Load
(
std
::
string
(
"../../../test/models/image_classification_resnet.inference.model"
));
paddle_mobile
::
framework
::
Executor
<
paddle_mobile
::
CPU
>
executor
(
program
);
paddle_mobile
::
framework
::
Tensor
input
;
SetupTensor
<
float
>
(
&
input
,
{
1
,
3
,
32
,
32
},
static_cast
<
float
>
(
0
),
static_cast
<
float
>
(
1
));
float
*
input_ptr
=
input
.
data
<
float
>
();
for
(
int
i
=
0
;
i
<
input
.
numel
();
++
i
)
{
// std::cout << input_ptr[i] << std::endl;
}
// std::cout << "input: " << input.memory_size() << std::endl;
// std::cout << "input: " << input.numel() << std::endl;
auto
output
=
executor
.
predict
(
input
);
// std::cout << "output: " << output->memory_size() << std::endl;
// std::cout << "output: " << output->numel() << std::endl;
// float* output_ptr = output->data<float>();
// for (int j = 0; j < output->numel(); ++j) {
// std::cout << " value of output: " << output_ptr[j] << std::endl;
//
paddle_mobile
::
test
::
testElementwiseAdd
();
paddle_mobile
::
test
::
testMul
();
return
0
;
}
test/
elementwise_add_op_test.h
→
test/
operators/test_elementwise_add_op.cpp
浏览文件 @
255ceeec
...
...
@@ -17,8 +17,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
==============================================================================*/
#pragma once
#include "../test_include.h"
#include "operators/elementwise_add_op.h"
#include "test_include.h"
namespace
paddle_mobile
{
namespace
framework
{
...
...
@@ -123,14 +123,13 @@ template <typename Dtype> class TestElementwiseAddOp {
template
class
TestElementwiseAddOp
<
CPU
>;
}
// namespace framework
namespace
test
{
void
testElementwiseAdd
()
{
}
// namespace paddle_mobile
int
main
()
{
DLOG
<<
"----------**********----------"
;
DLOG
<<
"begin to run ElementAddOp Test"
;
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
auto
program
=
loader
.
Load
(
std
::
string
(
"../../test/models/"
loader
.
Load
(
std
::
string
(
"../../
../
test/models/"
"image_classification_resnet.inference.model"
));
/// input x (1,3,224,224)
...
...
@@ -159,6 +158,5 @@ void testElementwiseAdd() {
DLOG
<<
inputx_ptr
[
226
]
<<
" + "
<<
inputy_ptr
[
2
]
<<
" = "
<<
output_add_ptr
[
226
];
return
0
;
}
}
// namespace test
}
// namespace paddle_mobile
test/
mul_op_test.h
→
test/
operators/test_mul_op.cpp
浏览文件 @
255ceeec
...
...
@@ -17,8 +17,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
==============================================================================*/
#pragma once
#include "../test_include.h"
#include "operators/mul_op.h"
#include "test_include.h"
namespace
paddle_mobile
{
namespace
framework
{
...
...
@@ -125,14 +125,14 @@ template <typename Dtype> class TestMulOp {
template
class
TestMulOp
<
CPU
>;
}
// namespace framework
}
// namespace paddle_mobile
namespace
test
{
void
testMul
()
{
int
main
()
{
DLOG
<<
"----------**********----------"
;
DLOG
<<
"begin to run MulOp Test"
;
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
auto
program
=
loader
.
Load
(
std
::
string
(
"../../test/models/"
loader
.
Load
(
std
::
string
(
"../../
../
test/models/"
"image_classification_resnet.inference.model"
));
/// input x (3,2,1,1)
...
...
@@ -185,6 +185,5 @@ void testMul() {
DLOG
<<
inputx_ptr
[
0
]
<<
" x "
<<
inputy_ptr
[
0
]
<<
" + "
<<
inputx_ptr
[
1
]
<<
" x "
<<
inputy_ptr
[
0
+
3
]
<<
" = "
<<
output_mul_ptr
[
0
];
return
0
;
}
}
// namespace test
}
// namespace paddle_mobile
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录