Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
c2459c6b
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看板
提交
c2459c6b
编写于
7月 16, 2020
作者:
D
dingweihao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ARM]remove unnecessary code for expand_as op,test=develop
上级
a30b9743
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
6 addition
and
15 deletion
+6
-15
lite/kernels/host/expand_as_compute.cc
lite/kernels/host/expand_as_compute.cc
+6
-6
lite/tests/kernels/expand_as_compute_test.cc
lite/tests/kernels/expand_as_compute_test.cc
+0
-9
未找到文件。
lite/kernels/host/expand_as_compute.cc
浏览文件 @
c2459c6b
...
...
@@ -39,17 +39,17 @@ void ExpandAsCompute<T, PType>::Run() {
DDim
in_shape
=
x
->
dims
();
int
inner_num
=
1
;
int
i
=
dims
-
1
;
int
outer_num
=
in_shape
.
count
(
0
,
i
);
inner_num
*=
in_shape
[
i
];
int
pos
=
dims
-
1
;
int
outer_num
=
in_shape
.
count
(
0
,
pos
);
inner_num
*=
in_shape
[
pos
];
for
(
int
j
=
0
;
j
<
outer_num
;
++
j
)
{
for
(
int
k
=
0
;
k
<
expand_times
[
i
];
++
k
)
{
memcpy
(
dst
+
(
j
*
expand_times
[
i
]
+
k
)
*
inner_num
,
for
(
int
k
=
0
;
k
<
expand_times
[
pos
];
++
k
)
{
memcpy
(
dst
+
(
j
*
expand_times
[
pos
]
+
k
)
*
inner_num
,
src
+
j
*
inner_num
,
sizeof
(
T
)
*
inner_num
);
}
}
inner_num
*=
expand_times
[
i
];
inner_num
*=
expand_times
[
pos
];
for
(
int
i
=
dims
-
2
;
i
>=
0
;
--
i
)
{
int
outer_num
=
in_shape
.
count
(
0
,
i
);
inner_num
*=
in_shape
[
i
];
...
...
lite/tests/kernels/expand_as_compute_test.cc
浏览文件 @
c2459c6b
...
...
@@ -25,7 +25,6 @@ class ExpandAsComputeTester : public arena::TestCase {
// common attributes for this op.
std
::
string
x_
=
"X"
;
std
::
string
out_
=
"Out"
;
// std::vector<int> expand_times_;
std
::
string
target_
=
"Target"
;
DDim
dims_
;
DDim
target_dims_
;
...
...
@@ -98,9 +97,6 @@ class ExpandAsComputeTester : public arena::TestCase {
};
void
test_expand_as_3dim
(
Place
place
,
float
abs_error
)
{
// for (std::vector<int> expand_times : {std::vector<int>({2, 3, 1}),
// std::vector<int>({2, 2, 2}),
// std::vector<int>({3, 1, 2})}) {
for
(
int
C
:
{
3
})
{
for
(
int
H
:
{
2
})
{
for
(
int
W
:
{
4
})
{
...
...
@@ -111,13 +107,9 @@ void test_expand_as_3dim(Place place, float abs_error) {
}
}
}
//}
}
void
test_expand_as_4dim
(
Place
place
,
float
abs_error
)
{
// for (std::vector<int> expand_times : {std::vector<int>({2, 3, 1, 4}),
// std::vector<int>({2, 2, 2, 2}),
// std::vector<int>({3, 1, 2, 1})}) {
for
(
int
N
:
{
2
})
{
for
(
int
C
:
{
3
})
{
for
(
int
H
:
{
2
})
{
...
...
@@ -133,7 +125,6 @@ void test_expand_as_4dim(Place place, float abs_error) {
}
}
}
//}
}
TEST
(
ExpandAs
,
precision
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录