Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
c7bcf3b7
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看板
提交
c7bcf3b7
编写于
1月 11, 2019
作者:
J
Jiaying Zhao
提交者:
GitHub
1月 11, 2019
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'develop' into develop
上级
d9ad3056
542ed008
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
89 addition
and
19 deletion
+89
-19
src/fpga/V1/api.cpp
src/fpga/V1/api.cpp
+2
-2
src/fpga/common/fpga_common.cpp
src/fpga/common/fpga_common.cpp
+86
-16
src/fpga/common/fpga_common.h
src/fpga/common/fpga_common.h
+1
-1
未找到文件。
src/fpga/V1/api.cpp
浏览文件 @
c7bcf3b7
...
...
@@ -332,8 +332,8 @@ void expand_conv_arg(ConvArgs *arg) {
auto
image_win_cnt
=
block_len
;
auto
image_win_cnt_last
=
block_last
;
auto
res_row_data_align4_pad
=
res_amount_per_row_pad
/
8
;
auto
prog_full_cnt
=
2048
/
(
filter_amount_all
/
16
*
2
)
-
1
;
if
(
prog_full_cnt
==
1023
)
{
auto
prog_full_cnt
=
1024
/
(
filter_amount_all
/
16
*
2
)
-
1
;
if
(
prog_full_cnt
==
511
)
{
prog_full_cnt
--
;
}
auto
post_prog_full_cnt
=
...
...
src/fpga/common/fpga_common.cpp
100755 → 100644
浏览文件 @
c7bcf3b7
...
...
@@ -22,26 +22,97 @@ namespace paddle_mobile {
namespace
fpga
{
int16_t
fp32_2_fp16
(
float
fp32_num
)
{
unsigned
long
tmp
=
*
(
unsigned
long
*
)(
&
fp32_num
);
// NOLINT
auto
t
=
(
int16_t
)(((
tmp
&
0x007fffff
)
>>
13
)
|
((
tmp
&
0x80000000
)
>>
16
)
|
(((
tmp
&
0x7f800000
)
>>
13
)
-
(
112
<<
10
)));
if
(
tmp
&
0x1000
)
{
t
++
;
// roundoff
int32_t
tmp
=
*
(
reinterpret_cast
<
int32_t
*>
)(
&
fp32_num
);
int16_t
se_fp32
=
(
tmp
>>
23
)
&
0x1ff
;
int32_t
m_fp32
=
tmp
&
0x007fffff
;
int16_t
se_fp16
=
0
;
int16_t
m_fp16
=
0
;
if
(
se_fp32
<
103
)
{
se_fp16
=
0x0000
;
m_fp16
=
m_fp32
>>
24
;
}
else
if
(
se_fp32
<
113
)
{
se_fp16
=
(
0x0400
>>
(
113
-
se_fp32
));
m_fp16
=
m_fp32
>>
(
126
-
se_fp32
);
}
else
if
(
se_fp32
<=
142
)
{
se_fp16
=
(
se_fp32
-
112
)
<<
10
;
m_fp16
=
m_fp32
>>
13
;
}
else
if
(
se_fp32
<
255
)
{
se_fp16
=
0x7C00
;
m_fp16
=
m_fp32
>>
24
;
}
else
if
(
se_fp32
==
255
)
{
se_fp16
=
0x7C00
;
m_fp16
=
m_fp32
>>
13
;
}
else
if
(
se_fp32
<
359
)
{
se_fp16
=
0x8000
;
m_fp16
=
m_fp32
>>
24
;
}
else
if
(
se_fp32
<
369
)
{
se_fp16
=
(
0x0400
>>
(
369
-
se_fp32
))
|
0x8000
;
m_fp16
=
m_fp32
>>
(
382
-
se_fp32
);
}
else
if
(
se_fp32
<=
398
)
{
se_fp16
=
((
se_fp32
-
368
)
<<
10
)
|
0x8000
;
m_fp16
=
m_fp32
>>
13
;
}
else
if
(
se_fp32
<
511
)
{
se_fp16
=
0x7C00
;
m_fp16
=
m_fp32
>>
24
;
}
else
{
se_fp16
=
0x7C00
;
m_fp16
=
m_fp32
>>
13
;
}
int16_t
result
=
se_fp16
+
m_fp16
;
return
result
;
}
int32_t
convertmantissa
(
int32_t
i
)
{
int32_t
m
=
i
<<
13
;
int32_t
e
=
0
;
while
(
!
(
m
&
0x00800000
))
{
e
-=
0x00800000
;
m
<<=
1
;
}
return
t
;
m
&=
~
0x00800000
;
e
+=
0x38800000
;
return
m
|
e
;
}
float
fp16_2_fp32
(
int16_t
fp16_num
)
{
if
(
0
==
fp16_num
)
{
return
0
;
int16_t
se_fp16
=
fp16_num
>>
10
;
int16_t
m_fp16
=
fp16_num
&
0x3ff
;
int32_t
e_fp32
=
0
;
int16_t
offset
=
0
;
int32_t
m_fp32
=
0
;
if
(
se_fp16
==
0
)
{
e_fp32
=
0
;
offset
=
0
;
}
else
if
(
se_fp16
<
31
)
{
e_fp32
=
se_fp16
<<
23
;
offset
=
1024
;
}
else
if
(
se_fp16
==
31
)
{
e_fp32
=
0x47800000
;
offset
=
1024
;
}
else
if
(
se_fp16
==
32
)
{
e_fp32
=
0x80000000
;
offset
=
0
;
}
else
if
(
se_fp16
<
63
)
{
e_fp32
=
0x80000000
+
(
se_fp16
-
32
)
<<
23
;
offset
=
1024
;
}
else
{
// se_fp16 == 63
e_fp32
=
0xC7800000
;
offset
=
1024
;
}
int16_t
a
=
offset
+
m_fp16
;
if
(
a
==
0
)
{
m_fp32
=
0
;
}
else
if
(
a
<
1024
)
{
int32_t
tmp
=
a
;
m_fp32
=
convertmantissa
(
tmp
);
}
else
{
int32_t
tmp
=
a
-
1024
;
m_fp32
=
0x38000000
+
(
tmp
<<
13
);
}
int
frac
=
(
fp16_num
&
0x3ff
);
int
exp
=
((
fp16_num
&
0x7c00
)
>>
10
)
+
112
;
int
s
=
fp16_num
&
0x8000
;
int
tmp
=
0
;
float
fp32_num
;
tmp
=
s
<<
16
|
exp
<<
23
|
frac
<<
13
;
fp32_num
=
*
(
float
*
)
&
tmp
;
// NOLINT
int32_t
tmp
=
e_fp32
+
m_fp32
;
float
fp32_num
=
*
(
reinterpret_cast
<
float
*>
)
&
tmp
;
return
fp32_num
;
}
...
...
@@ -126,6 +197,5 @@ uint64_t vaddr_to_paddr(void *address) {
return
0
;
#endif
}
}
// namespace fpga
}
// namespace paddle_mobile
src/fpga/common/fpga_common.h
浏览文件 @
c7bcf3b7
...
...
@@ -256,6 +256,6 @@ int fpga_invalidate(void* address, size_t size);
uint64_t
vaddr_to_paddr
(
void
*
address
);
void
expand_conv_arg
(
ConvArgs
*
arg
);
void
expand_EW_arg
(
EWAddArgs
*
arg
);
inline
int32_t
convertmantissa
(
int32_t
i
);
}
// namespace fpga
}
// namespace paddle_mobile
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录