Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
34b05e19
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
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看板
提交
34b05e19
编写于
2月 21, 2020
作者:
M
MyPandaShaoxiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: add opencl precision profile
上级
b74c7ebd
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
110 addition
and
4 deletion
+110
-4
lite/core/profile/precision_profiler.h
lite/core/profile/precision_profiler.h
+110
-4
未找到文件。
lite/core/profile/precision_profiler.h
浏览文件 @
34b05e19
...
...
@@ -21,7 +21,9 @@
#include <string>
#include <vector>
#include "lite/core/program.h"
#ifdef LITE_WITH_OPENCL
#include "lite/kernels/opencl/image_helper.h"
#endif
namespace
paddle
{
namespace
lite
{
namespace
profile
{
...
...
@@ -49,15 +51,19 @@ class PrecisionProfiler {
~
PrecisionProfiler
()
{
LOG
(
INFO
)
<<
">> Running kernel: "
<<
inst_
->
op
()
->
op_info
()
->
Repr
()
<<
" on Target "
<<
TargetToStr
(
inst_
->
kernel
()
->
target
())
<<
" "
<<
PrecisionToStr
(
inst_
->
kernel
()
->
precision
());
<<
PrecisionToStr
(
inst_
->
kernel
()
->
precision
())
<<
" "
<<
DataLayoutToStr
(
inst_
->
kernel
()
->
layout
());
auto
tensor_mean
=
[](
const
Tensor
*
in
,
PrecisionType
ptype
,
std
::
string
target_str
=
"host"
,
std
::
string
layout_str
=
"nchw"
,
std
::
string
name
=
"inst"
)
->
double
{
if
(
!
in
->
data
<
int8_t
>
())
{
return
-
99999
;
}
double
sum
=
0.
;
switch
(
ptype
)
{
#ifndef LITE_WITH_OPENCL
case
PRECISION
(
kFloat
):
{
auto
ptr
=
in
->
data
<
float
>
();
// write_tensorfile<float>(in, name);
...
...
@@ -66,6 +72,93 @@ class PrecisionProfiler {
}
return
sum
/
in
->
numel
();
}
#else
case
PRECISION
(
kFloat
):
{
if
(
layout_str
==
"ImageDefault"
)
{
paddle
::
lite
::
CLImageConverterDefault
default_convertor
;
auto
image_shape
=
default_convertor
.
InitImageDimInfoWith
(
in
->
dims
());
size_t
im_w
=
image_shape
[
0
];
size_t
im_h
=
image_shape
[
1
];
LOG
(
INFO
)
<<
im_w
<<
" "
<<
im_h
;
std
::
vector
<
float
>
in_data_v
(
im_w
*
im_h
*
4
);
std
::
vector
<
float
>
real_out_v
(
in
->
numel
());
const
size_t
cl_image2d_row_pitch
{
0
};
const
size_t
cl_image2d_slice_pitch
{
0
};
TargetWrapperCL
::
ImgcpySync
(
in_data_v
.
data
(),
in
->
data
<
float
,
cl
::
Image2D
>
(),
im_w
,
im_h
,
cl_image2d_row_pitch
,
cl_image2d_slice_pitch
,
IoDirection
::
DtoH
);
default_convertor
.
ImageToNCHW
(
in_data_v
.
data
(),
real_out_v
.
data
(),
image_shape
,
in
->
dims
());
// write_tensorfile<float>(in, name);
for
(
int
i
=
0
;
i
<
real_out_v
.
size
();
++
i
)
{
sum
+=
real_out_v
[
i
];
}
LOG
(
INFO
)
<<
in
->
numel
();
return
sum
/
in
->
numel
();
}
else
if
(
target_str
==
"opencl"
)
{
std
::
vector
<
float
>
in_data_v
(
in
->
numel
(),
0
);
TargetWrapperCL
::
MemcpySync
(
in_data_v
.
data
(),
in
->
data
<
float
>
(),
in
->
numel
()
*
sizeof
(
float
),
IoDirection
::
DtoH
);
for
(
int
i
=
0
;
i
<
in_data_v
.
size
();
++
i
)
{
sum
+=
in_data_v
[
i
];
}
LOG
(
INFO
)
<<
in
->
numel
();
return
sum
/
in
->
numel
();
}
else
{
return
-
10000
;
}
}
case
PRECISION
(
kAny
):
{
if
(
layout_str
==
"ImageDefault"
)
{
paddle
::
lite
::
CLImageConverterDefault
default_convertor
;
auto
image_shape
=
default_convertor
.
InitImageDimInfoWith
(
in
->
dims
());
size_t
im_w
=
image_shape
[
0
];
size_t
im_h
=
image_shape
[
1
];
LOG
(
INFO
)
<<
im_w
<<
" "
<<
im_h
;
std
::
vector
<
float
>
in_data_v
(
im_w
*
im_h
*
4
);
std
::
vector
<
float
>
real_out_v
(
in
->
numel
());
const
size_t
cl_image2d_row_pitch
{
0
};
const
size_t
cl_image2d_slice_pitch
{
0
};
TargetWrapperCL
::
ImgcpySync
(
in_data_v
.
data
(),
in
->
data
<
float
,
cl
::
Image2D
>
(),
im_w
,
im_h
,
cl_image2d_row_pitch
,
cl_image2d_slice_pitch
,
IoDirection
::
DtoH
);
default_convertor
.
ImageToNCHW
(
in_data_v
.
data
(),
real_out_v
.
data
(),
image_shape
,
in
->
dims
());
// write_tensorfile<float>(in, name);
for
(
int
i
=
0
;
i
<
in
->
numel
();
++
i
)
{
sum
+=
real_out_v
[
i
];
}
LOG
(
INFO
)
<<
in
->
numel
();
return
sum
/
in
->
numel
();
}
else
if
(
target_str
==
"opencl"
)
{
std
::
vector
<
float
>
in_data_v
(
in
->
numel
(),
0
);
TargetWrapperCL
::
MemcpySync
(
in_data_v
.
data
(),
in
->
data
<
float
>
(),
in
->
numel
()
*
sizeof
(
float
),
IoDirection
::
DtoH
);
for
(
int
i
=
0
;
i
<
in_data_v
.
size
();
++
i
)
{
sum
+=
in_data_v
[
i
];
}
LOG
(
INFO
)
<<
in
->
numel
();
return
sum
/
in
->
numel
();
}
else
{
return
-
10000
;
}
}
#endif
#ifndef LITE_WITH_OPENCL
case
PRECISION
(
kAny
):
{
auto
ptr
=
in
->
data
<
float
>
();
// write_tensorfile<float>(in, name);
...
...
@@ -90,6 +183,7 @@ class PrecisionProfiler {
}
return
sum
/
in
->
numel
();
}
#endif
default:
LOG
(
INFO
)
<<
"unsupport data type: "
<<
PrecisionToStr
(
ptype
);
return
0.
;
...
...
@@ -107,15 +201,27 @@ class PrecisionProfiler {
if
(
type
->
IsTensor
())
{
auto
tout
=
op_scope
->
FindVar
(
out_name
)
->
GetMutable
<
Tensor
>
();
double
mean
=
tensor_mean
(
tout
,
type
->
precision
(),
out_name
);
double
mean
=
tensor_mean
(
tout
,
type
->
precision
(),
TargetToStr
(
inst_
->
kernel
()
->
target
()),
DataLayoutToStr
(
inst_
->
kernel
()
->
layout
()),
out_name
);
LOG
(
INFO
)
<<
"go here"
;
LOG
(
INFO
)
<<
"output name: "
<<
out_name
<<
", dims: "
<<
tout
->
dims
()
<<
", precision: "
<<
PrecisionToStr
(
type
->
precision
())
<<
" "
<<
TargetToStr
(
inst_
->
kernel
()
->
target
())
<<
" "
<<
DataLayoutToStr
(
inst_
->
kernel
()
->
layout
())
<<
", mean value: "
<<
mean
<<
" shape:"
<<
tout
->
dims
();
}
else
if
(
type
->
IsTensorList
())
{
auto
tout
=
op_scope
->
FindVar
(
out_name
)
->
GetMutable
<
std
::
vector
<
Tensor
>>
();
for
(
auto
&
t
:
*
tout
)
{
double
mean
=
tensor_mean
(
&
t
,
type
->
precision
(),
out_name
);
double
mean
=
tensor_mean
(
&
t
,
type
->
precision
(),
TargetToStr
(
inst_
->
kernel
()
->
target
()),
DataLayoutToStr
(
inst_
->
kernel
()
->
layout
()),
out_name
);
LOG
(
INFO
)
<<
"output name: "
<<
out_name
<<
", dims: "
<<
t
.
dims
()
<<
", precision: "
<<
PrecisionToStr
(
type
->
precision
())
<<
", mean value: "
<<
mean
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录