Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
4030e756
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
4030e756
编写于
6月 16, 2020
作者:
H
HappyAngel
提交者:
GitHub
6月 17, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[arm]fix concat axis < 0 compute error problem (#3802)
* fix concatt axis < 0 errorr,ttest=develop * fix format. test=develop
上级
30616633
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
9 deletion
+8
-9
lite/core/mir/fusion/conv_activation_fuse_pass.cc
lite/core/mir/fusion/conv_activation_fuse_pass.cc
+4
-4
lite/kernels/arm/concat_compute.cc
lite/kernels/arm/concat_compute.cc
+4
-5
未找到文件。
lite/core/mir/fusion/conv_activation_fuse_pass.cc
浏览文件 @
4030e756
...
...
@@ -25,21 +25,21 @@ namespace mir {
void
ConvActivationFusePass
::
Apply
(
const
std
::
unique_ptr
<
SSAGraph
>&
graph
)
{
std
::
vector
<
std
::
string
>
act_types
{
"relu"
};
bool
has_int8
=
false
;
bool
has_arm
_float
=
false
;
bool
has_arm
=
false
;
bool
has_cuda
=
false
;
for
(
auto
&
place
:
graph
->
valid_places
())
{
if
(
place
.
precision
==
PRECISION
(
kInt8
))
{
has_int8
=
true
;
}
if
(
place
.
target
==
TARGET
(
kARM
)
&&
place
.
precision
==
PRECISION
(
kFloat
)
)
{
has_arm
_float
=
true
;
if
(
place
.
target
==
TARGET
(
kARM
))
{
has_arm
=
true
;
}
if
(
place
.
target
==
TARGET
(
kCUDA
))
{
has_cuda
=
true
;
}
}
if
(
!
has_int8
&&
has_arm_float
)
{
if
(
has_arm
)
{
act_types
.
push_back
(
"relu6"
);
act_types
.
push_back
(
"leaky_relu"
);
}
...
...
lite/kernels/arm/concat_compute.cc
浏览文件 @
4030e756
...
...
@@ -52,11 +52,7 @@ void ConcatFunc(const std::vector<lite::Tensor*> inputs,
output_offset
+=
in_stride
[
0
];
}
}
else
{
std
::
vector
<
lite
::
Tensor
*>
inputs_concat
(
inputs
.
size
());
for
(
int
j
=
0
;
j
<
inputs
.
size
();
++
j
)
{
inputs_concat
[
j
]
=
inputs
[
j
];
}
lite
::
arm
::
math
::
concat_func
<
T
>
(
inputs_concat
,
axis
,
out
);
lite
::
arm
::
math
::
concat_func
<
T
>
(
inputs
,
axis
,
out
);
}
}
...
...
@@ -71,6 +67,9 @@ void ConcatCompute::Run() {
auto
*
axis_tensor_data
=
axis_tensor
->
data
<
int
>
();
axis
=
axis_tensor_data
[
0
];
}
if
(
axis
<
0
)
{
axis
+=
inputs
[
0
]
->
dims
().
size
();
}
switch
(
inputs
.
front
()
->
precision
())
{
case
PRECISION
(
kFloat
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录