Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
f1b1c753
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f1b1c753
编写于
7月 19, 2020
作者:
R
ReeseWang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add dim=3 support for scale op
上级
bd0f1abd
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
27 addition
and
0 deletion
+27
-0
paddle/fluid/inference/tensorrt/convert/scale_op.cc
paddle/fluid/inference/tensorrt/convert/scale_op.cc
+27
-0
未找到文件。
paddle/fluid/inference/tensorrt/convert/scale_op.cc
浏览文件 @
f1b1c753
...
@@ -58,6 +58,23 @@ class ScaleOpConverter : public OpConverter {
...
@@ -58,6 +58,23 @@ class ScaleOpConverter : public OpConverter {
TensorRTEngine
::
Weight
power_weights
{
nvinfer1
::
DataType
::
kFLOAT
,
nullptr
,
TensorRTEngine
::
Weight
power_weights
{
nvinfer1
::
DataType
::
kFLOAT
,
nullptr
,
0
};
0
};
nvinfer1
::
ILayer
*
layer
=
nullptr
;
nvinfer1
::
ILayer
*
layer
=
nullptr
;
auto
idim
=
input
->
getDimensions
();
PADDLE_ENFORCE_GE
(
idim
.
nbDims
,
3
,
platform
::
errors
::
Fatal
(
"Paddle-TRT scale mode only support dimension >= 3"
));
nvinfer1
::
IShuffleLayer
*
expand_layer
=
nullptr
;
nvinfer1
::
IShuffleLayer
*
squeeze_layer
=
nullptr
;
if
(
idim
.
nbDims
==
3
)
{
// TensorRT scale layer is not supporting input dims < 4 when using
// explicit batch
expand_layer
=
TRT_ENGINE_ADD_LAYER
(
engine_
,
Shuffle
,
*
input
);
nvinfer1
::
Dims4
target_shape
(
0
,
0
,
0
,
1
);
// expand 1 dims
expand_layer
->
setReshapeDimensions
(
target_shape
);
input
=
expand_layer
->
getOutput
(
0
);
}
if
(
bias_after_scale
)
{
if
(
bias_after_scale
)
{
layer
=
TRT_ENGINE_ADD_LAYER
(
layer
=
TRT_ENGINE_ADD_LAYER
(
engine_
,
Scale
,
*
input
,
nvinfer1
::
ScaleMode
::
kUNIFORM
,
engine_
,
Scale
,
*
input
,
nvinfer1
::
ScaleMode
::
kUNIFORM
,
...
@@ -73,6 +90,16 @@ class ScaleOpConverter : public OpConverter {
...
@@ -73,6 +90,16 @@ class ScaleOpConverter : public OpConverter {
power_weights
.
get
(),
scale_weights
.
get
(),
power_weights
.
get
());
power_weights
.
get
(),
scale_weights
.
get
(),
power_weights
.
get
());
}
}
PADDLE_ENFORCE_EQ
(
layer
!=
nullptr
,
true
);
if
(
idim
.
nbDims
==
3
)
{
// TensorRT scale layer is not supporting input dims < 4 when using
// explicit batch
squeeze_layer
=
TRT_ENGINE_ADD_LAYER
(
engine_
,
Shuffle
,
*
(
layer
->
getOutput
(
0
)));
nvinfer1
::
Dims3
target_shape
(
0
,
0
,
0
);
// expand 1 dims
squeeze_layer
->
setReshapeDimensions
(
target_shape
);
}
RreplenishLayerAndOutput
(
layer
,
"scale"
,
{
out_name
},
test_mode
);
RreplenishLayerAndOutput
(
layer
,
"scale"
,
{
out_name
},
test_mode
);
}
}
};
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录