Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
e48b6dcf
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
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看板
未验证
提交
e48b6dcf
编写于
10月 28, 2022
作者:
A
Aurelius84
提交者:
GitHub
10月 28, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[JITLayer]Enable OneDNN on CPU and Fix zero shape (#47428)
* [JITLayer]Enable OneDNN on CPU and Fix zero shape * remove VLOG
上级
57d5ffa5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
40 addition
and
33 deletion
+40
-33
paddle/fluid/inference/api/analysis_predictor.cc
paddle/fluid/inference/api/analysis_predictor.cc
+3
-2
paddle/fluid/jit/engine/predictor_engine.cc
paddle/fluid/jit/engine/predictor_engine.cc
+37
-31
未找到文件。
paddle/fluid/inference/api/analysis_predictor.cc
浏览文件 @
e48b6dcf
...
@@ -171,8 +171,9 @@ bool PaddleTensorToLoDTensor(const PaddleTensor &pt,
...
@@ -171,8 +171,9 @@ bool PaddleTensorToLoDTensor(const PaddleTensor &pt,
// NOTE(Aurelius84): Some kernels support zero shape input
// NOTE(Aurelius84): Some kernels support zero shape input
// without memory holder, we should skip enforce logic.
// without memory holder, we should skip enforce logic.
bool
has_zero_dim
=
(
phi
::
product
(
ddim
)
==
0
);
bool
has_zero_dim
=
(
phi
::
product
(
ddim
)
==
0
);
if
(
has_zero_dim
)
{
VLOG
(
3
)
<<
"Found zero dim: "
<<
has_zero_dim
VLOG
(
3
)
<<
"Found zero dim from input with ddim: "
<<
ddim
;
<<
" from input with ddim: "
<<
ddim
;
if
(
!
has_zero_dim
)
{
PADDLE_ENFORCE_NOT_NULL
(
PADDLE_ENFORCE_NOT_NULL
(
input_ptr
,
input_ptr
,
paddle
::
platform
::
errors
::
Fatal
(
paddle
::
platform
::
errors
::
Fatal
(
...
...
paddle/fluid/jit/engine/predictor_engine.cc
浏览文件 @
e48b6dcf
...
@@ -34,12 +34,16 @@ PredictorEngine::PredictorEngine(const std::shared_ptr<FunctionInfo> &info,
...
@@ -34,12 +34,16 @@ PredictorEngine::PredictorEngine(const std::shared_ptr<FunctionInfo> &info,
utils
::
ShareParamsIntoScope
(
info_
->
ParamNames
(),
params_dict
,
scope_
.
get
());
utils
::
ShareParamsIntoScope
(
info_
->
ParamNames
(),
params_dict
,
scope_
.
get
());
VLOG
(
6
)
<<
framework
::
GenScopeTreeDebugInfo
(
scope_
.
get
());
VLOG
(
6
)
<<
framework
::
GenScopeTreeDebugInfo
(
scope_
.
get
());
// TODO(Aurelius84): Expose AnalysisConfig to user.
AnalysisConfig
config
;
AnalysisConfig
config
;
config
.
SetProgFile
(
info
->
ProgramFilePath
());
config
.
SetProgFile
(
info
->
ProgramFilePath
());
if
(
platform
::
is_gpu_place
(
place_
))
{
if
(
platform
::
is_gpu_place
(
place_
))
{
config
.
EnableUseGpu
(
100
,
place_
.
GetDeviceId
());
config
.
EnableUseGpu
(
100
,
place_
.
GetDeviceId
());
}
else
if
(
platform
::
is_cpu_place
(
place_
))
{
}
else
if
(
platform
::
is_cpu_place
(
place_
))
{
config
.
DisableGpu
();
config
.
DisableGpu
();
config
.
EnableMKLDNN
();
config
.
EnableMkldnnInt8
();
config
.
SetMkldnnCacheCapacity
(
0
);
}
}
config
.
SetSkipLoadParams
(
true
);
config
.
SetSkipLoadParams
(
true
);
config
.
SetApplyOptim
(
true
);
config
.
SetApplyOptim
(
true
);
...
@@ -59,10 +63,6 @@ std::vector<Tensor> PredictorEngine::operator()(
...
@@ -59,10 +63,6 @@ std::vector<Tensor> PredictorEngine::operator()(
std
::
vector
<
DenseTensor
>
PredictorEngine
::
operator
()(
std
::
vector
<
DenseTensor
>
PredictorEngine
::
operator
()(
const
std
::
vector
<
DenseTensor
>
&
inputs
)
{
const
std
::
vector
<
DenseTensor
>
&
inputs
)
{
for
(
auto
t
:
inputs
)
{
VLOG
(
1
)
<<
"inputs is init: "
<<
t
.
initialized
();
}
std
::
vector
<
PaddleTensor
>
pt_inputs
;
std
::
vector
<
PaddleTensor
>
pt_inputs
;
std
::
vector
<
PaddleTensor
>
pt_outputs
;
std
::
vector
<
PaddleTensor
>
pt_outputs
;
for
(
auto
&
t
:
inputs
)
{
for
(
auto
&
t
:
inputs
)
{
...
@@ -84,22 +84,23 @@ std::vector<DenseTensor> PredictorEngine::operator()(
...
@@ -84,22 +84,23 @@ std::vector<DenseTensor> PredictorEngine::operator()(
static
PaddleTensor
DenseTensorToPaddleTensor
(
DenseTensor
*
t
)
{
static
PaddleTensor
DenseTensorToPaddleTensor
(
DenseTensor
*
t
)
{
PaddleTensor
pt
;
PaddleTensor
pt
;
switch
(
framework
::
TransToProtoVarType
(
t
->
dtype
()))
{
if
(
framework
::
TransToProtoVarType
(
t
->
dtype
())
==
case
framework
::
proto
::
VarType
::
INT32
:
{
framework
::
proto
::
VarType
::
INT32
)
{
pt
.
data
.
Reset
(
t
->
data
(),
t
->
numel
()
*
sizeof
(
int32_t
));
pt
.
data
.
Reset
(
t
->
data
(),
t
->
numel
()
*
sizeof
(
int32_t
));
pt
.
dtype
=
PaddleDType
::
INT32
;
pt
.
dtype
=
PaddleDType
::
INT32
;
}
break
;
}
else
if
(
framework
::
TransToProtoVarType
(
t
->
dtype
())
==
case
framework
::
proto
::
VarType
::
INT64
:
{
framework
::
proto
::
VarType
::
INT64
)
{
pt
.
data
.
Reset
(
t
->
data
(),
t
->
numel
()
*
sizeof
(
int64_t
));
pt
.
data
.
Reset
(
t
->
data
(),
t
->
numel
()
*
sizeof
(
int64_t
));
pt
.
dtype
=
PaddleDType
::
INT64
;
pt
.
dtype
=
PaddleDType
::
INT64
;
}
break
;
}
else
if
(
framework
::
TransToProtoVarType
(
t
->
dtype
())
==
case
framework
::
proto
::
VarType
::
FP32
:
{
framework
::
proto
::
VarType
::
FP32
)
{
pt
.
data
.
Reset
(
t
->
data
(),
t
->
numel
()
*
sizeof
(
float
));
pt
.
data
.
Reset
(
t
->
data
(),
t
->
numel
()
*
sizeof
(
float
));
pt
.
dtype
=
PaddleDType
::
FLOAT32
;
pt
.
dtype
=
PaddleDType
::
FLOAT32
;
}
break
;
}
else
{
default:
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
PADDLE_THROW
(
"Unsupported tensor date type. Now only supports INT64, FP32, INT32."
));
platform
::
errors
::
Unimplemented
(
"Unsupported tensor date type. Now "
"only supports INT64, FP32, INT32."
));
}
}
pt
.
shape
=
phi
::
vectorize
<
int
>
(
t
->
dims
());
pt
.
shape
=
phi
::
vectorize
<
int
>
(
t
->
dims
());
return
pt
;
return
pt
;
...
@@ -110,17 +111,22 @@ static bool PaddleTensorToDenseTensor(const PaddleTensor &pt,
...
@@ -110,17 +111,22 @@ static bool PaddleTensorToDenseTensor(const PaddleTensor &pt,
const
platform
::
Place
&
place
)
{
const
platform
::
Place
&
place
)
{
framework
::
DDim
ddim
=
phi
::
make_ddim
(
pt
.
shape
);
framework
::
DDim
ddim
=
phi
::
make_ddim
(
pt
.
shape
);
void
*
input_ptr
;
void
*
input_ptr
;
if
(
pt
.
dtype
==
PaddleDType
::
INT64
)
{
switch
(
pt
.
dtype
)
{
input_ptr
=
t
->
mutable_data
<
int64_t
>
(
ddim
,
place
);
case
PaddleDType
::
INT64
:
}
else
if
(
pt
.
dtype
==
PaddleDType
::
FLOAT32
)
{
input_ptr
=
t
->
mutable_data
<
int64_t
>
(
ddim
,
place
);
input_ptr
=
t
->
mutable_data
<
float
>
(
ddim
,
place
);
break
;
}
else
if
(
pt
.
dtype
==
PaddleDType
::
INT32
)
{
case
PaddleDType
::
FLOAT32
:
input_ptr
=
t
->
mutable_data
<
int32_t
>
(
ddim
,
place
);
input_ptr
=
t
->
mutable_data
<
float
>
(
ddim
,
place
);
}
else
if
(
pt
.
dtype
==
PaddleDType
::
FLOAT16
)
{
break
;
input_ptr
=
t
->
mutable_data
<
float16
>
(
ddim
,
place
);
case
PaddleDType
::
INT32
:
}
else
{
input_ptr
=
t
->
mutable_data
<
int32_t
>
(
ddim
,
place
);
LOG
(
ERROR
)
<<
"unsupported feed type "
<<
pt
.
dtype
;
break
;
return
false
;
case
PaddleDType
::
FLOAT16
:
input_ptr
=
t
->
mutable_data
<
float16
>
(
ddim
,
place
);
break
;
default:
LOG
(
ERROR
)
<<
"unsupported feed type "
<<
pt
.
dtype
;
return
false
;
}
}
PADDLE_ENFORCE_NOT_NULL
(
PADDLE_ENFORCE_NOT_NULL
(
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录