Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
260923e1
MegEngine
项目概览
MegEngine 天元
/
MegEngine
大约 1 年 前同步成功
通知
399
Star
4705
Fork
582
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
MegEngine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
260923e1
编写于
1月 24, 2022
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
perf(aarch64): optimize aarch64 uint16 relayout with block_w==3
GitOrigin-RevId: fe6aaaac0cbd594ad80dcf2e9763fce9c99f5a4e
上级
b04c3d14
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
57 addition
and
0 deletion
+57
-0
dnn/src/aarch64/relayout/opr_impl.cpp
dnn/src/aarch64/relayout/opr_impl.cpp
+54
-0
dnn/test/aarch64/relayout.cpp
dnn/test/aarch64/relayout.cpp
+3
-0
未找到文件。
dnn/src/aarch64/relayout/opr_impl.cpp
浏览文件 @
260923e1
...
@@ -363,6 +363,58 @@ static inline void trans_8x4_u16(
...
@@ -363,6 +363,58 @@ static inline void trans_8x4_u16(
vst1q_u16
(
dst_ptr
+
3
*
dst_step
,
row_3
);
vst1q_u16
(
dst_ptr
+
3
*
dst_step
,
row_3
);
}
}
static
inline
void
trans_8x3_u16
(
const
void
*
src
,
void
*
dst
,
const
size_t
src_step
,
const
size_t
dst_step
)
{
uint16_t
*
src_ptr
=
(
uint16_t
*
)
src
;
uint16_t
*
dst_ptr
=
(
uint16_t
*
)
dst
;
uint16x4_t
src0
=
vld1_u16
(
src_ptr
+
0
*
src_step
);
// A0A1A2A3
uint16x4_t
src1
=
vld1_u16
(
src_ptr
+
1
*
src_step
);
// B0B1B2B3
uint16x4_t
src2
=
vld1_u16
(
src_ptr
+
2
*
src_step
);
// C0C1C2C3
uint16x4_t
src3
=
vld1_u16
(
src_ptr
+
3
*
src_step
);
// D0D1D2D3
uint16x4_t
src4
=
vld1_u16
(
src_ptr
+
4
*
src_step
);
// E0E1E2E3
uint16x4_t
src5
=
vld1_u16
(
src_ptr
+
5
*
src_step
);
// F0F1F2F3
uint16x4_t
src6
=
vld1_u16
(
src_ptr
+
6
*
src_step
);
// G0G1G2G3
// H0H1H2
uint16x4_t
src7
=
vreinterpret_u16_u32
(
vld1_dup_u32
((
uint32_t
*
)(
src_ptr
+
7
*
src_step
)));
src7
=
vld1_lane_u16
(
src_ptr
+
7
*
src_step
+
2
,
src7
,
2
);
uint16x4_t
ab_low
=
vzip1_u16
(
src0
,
src1
);
// A0B0A1B1
uint16x4_t
ab_high
=
vzip2_u16
(
src0
,
src1
);
// A2B2A3B3
uint16x4_t
cd_low
=
vzip1_u16
(
src2
,
src3
);
// C0D0C1D1
uint16x4_t
cd_high
=
vzip2_u16
(
src2
,
src3
);
// C2D2C3D3
uint16x4_t
ef_low
=
vzip1_u16
(
src4
,
src5
);
// E0F0E1F1
uint16x4_t
ef_high
=
vzip2_u16
(
src4
,
src5
);
// E2F2E3F3
uint16x4_t
gh_low
=
vzip1_u16
(
src6
,
src7
);
// G0H0G1H1
uint16x4_t
gh_high
=
vzip2_u16
(
src6
,
src7
);
// G2H2G3
uint16x4_t
abcd_0
=
vreinterpret_u16_u32
(
vzip1_u32
(
vreinterpret_u32_u16
(
ab_low
),
vreinterpret_u32_u16
(
cd_low
)));
// A0B0C0D0
uint16x4_t
abcd_1
=
vreinterpret_u16_u32
(
vzip2_u32
(
vreinterpret_u32_u16
(
ab_low
),
vreinterpret_u32_u16
(
cd_low
)));
// A1B1C1D1
uint16x4_t
abcd_2
=
vreinterpret_u16_u32
(
vzip1_u32
(
vreinterpret_u32_u16
(
ab_high
),
vreinterpret_u32_u16
(
cd_high
)));
// A2B2C2D2
uint16x4_t
efgh_0
=
vreinterpret_u16_u32
(
vzip1_u32
(
vreinterpret_u32_u16
(
ef_low
),
vreinterpret_u32_u16
(
gh_low
)));
// E0F0G0H0
uint16x4_t
efgh_1
=
vreinterpret_u16_u32
(
vzip2_u32
(
vreinterpret_u32_u16
(
ef_low
),
vreinterpret_u32_u16
(
gh_low
)));
// E1F1G1H1
uint16x4_t
efgh_2
=
vreinterpret_u16_u32
(
vzip1_u32
(
vreinterpret_u32_u16
(
ef_high
),
vreinterpret_u32_u16
(
gh_high
)));
// E2F2G2H2
uint16x8_t
row_0
=
vcombine_u16
(
abcd_0
,
efgh_0
);
uint16x8_t
row_1
=
vcombine_u16
(
abcd_1
,
efgh_1
);
uint16x8_t
row_2
=
vcombine_u16
(
abcd_2
,
efgh_2
);
vst1q_u16
(
dst_ptr
+
0
*
dst_step
,
row_0
);
vst1q_u16
(
dst_ptr
+
1
*
dst_step
,
row_1
);
vst1q_u16
(
dst_ptr
+
2
*
dst_step
,
row_2
);
}
}
// anonymous namespace
}
// anonymous namespace
namespace
megdnn
{
namespace
megdnn
{
...
@@ -410,6 +462,8 @@ void transpose_block<Transpose2Byte>(
...
@@ -410,6 +462,8 @@ void transpose_block<Transpose2Byte>(
const
size_t
dst_stride
,
size_t
block_h
,
size_t
block_w
)
{
const
size_t
dst_stride
,
size_t
block_h
,
size_t
block_w
)
{
if
(
block_h
==
8
&&
block_w
==
4
)
{
if
(
block_h
==
8
&&
block_w
==
4
)
{
trans_8x4_u16
(
src
,
dst
,
src_stride
,
dst_stride
);
trans_8x4_u16
(
src
,
dst
,
src_stride
,
dst_stride
);
}
else
if
(
block_h
==
8
&&
block_w
==
3
)
{
trans_8x3_u16
(
src
,
dst
,
src_stride
,
dst_stride
);
}
else
{
}
else
{
transpose_block_fallback
(
src
,
dst
,
src_stride
,
dst_stride
,
block_h
,
block_w
);
transpose_block_fallback
(
src
,
dst
,
src_stride
,
dst_stride
,
block_h
,
block_w
);
}
}
...
...
dnn/test/aarch64/relayout.cpp
浏览文件 @
260923e1
...
@@ -40,6 +40,9 @@ TEST_F(AARCH64, Relayout) {
...
@@ -40,6 +40,9 @@ TEST_F(AARCH64, Relayout) {
TensorLayout
dst
({
1
,
54
,
112
,
256
},
{
1548288
,
28672
,
256
,
1
},
dtype
);
TensorLayout
dst
({
1
,
54
,
112
,
256
},
{
1548288
,
28672
,
256
,
1
},
dtype
);
checker
.
execl
({
src
,
dst
});
checker
.
execl
({
src
,
dst
});
}
}
TensorLayout
src_4_3
({
1
,
3
,
112
,
256
},
{
3
,
1
,
1024
,
4
},
dtype
::
Uint16
());
TensorLayout
dst_4_3
({
1
,
3
,
112
,
256
},
{
86016
,
28672
,
256
,
1
},
dtype
::
Uint16
());
checker
.
execl
({
src_4_3
,
dst_4_3
});
}
}
TEST_F
(
AARCH64
,
RelayoutNonContig
)
{
TEST_F
(
AARCH64
,
RelayoutNonContig
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录