Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
40d47fae
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
40d47fae
编写于
8月 31, 2017
作者:
H
hedaoyuan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Refine code]Move class Padding into the NeonDepthwiseConv.h.
上级
4b6b7251
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
99 addition
and
99 deletion
+99
-99
paddle/function/Im2Col.h
paddle/function/Im2Col.h
+0
-91
paddle/function/neon/NeonDepthwiseConv.cpp
paddle/function/neon/NeonDepthwiseConv.cpp
+7
-8
paddle/function/neon/NeonDepthwiseConv.h
paddle/function/neon/NeonDepthwiseConv.h
+92
-0
未找到文件。
paddle/function/Im2Col.h
浏览文件 @
40d47fae
...
...
@@ -94,95 +94,4 @@ public:
int
paddingWidth
);
};
template
<
class
T
>
struct
Padding
{
static
void
run
(
const
T
*
src
,
T
*
dest
,
int
channels
,
int
inputHeight
,
int
inputWidth
,
int
paddingHeight
,
int
paddingWidth
)
{
const
int
destWidth
=
inputWidth
+
2
*
paddingWidth
;
for
(
int
c
=
0
;
c
<
channels
;
c
++
)
{
if
(
paddingHeight
>
0
)
{
memset
(
dest
,
0
,
destWidth
*
paddingHeight
*
sizeof
(
T
));
dest
+=
destWidth
*
paddingHeight
;
}
for
(
int
i
=
0
;
i
<
inputHeight
;
i
++
)
{
// padding head
for
(
int
j
=
0
;
j
<
paddingWidth
;
j
++
)
{
*
dest
++
=
T
(
0
);
}
memcpy
(
dest
,
src
,
inputWidth
*
sizeof
(
T
));
dest
+=
inputWidth
;
src
+=
inputWidth
;
// padding tail
for
(
int
j
=
0
;
j
<
paddingWidth
;
j
++
)
{
*
dest
++
=
T
(
0
);
}
}
if
(
paddingHeight
>
0
)
{
memset
(
dest
,
0
,
destWidth
*
paddingHeight
*
sizeof
(
T
));
dest
+=
destWidth
*
paddingHeight
;
}
}
}
};
#if defined(__ARM_NEON__) || defined(__ARM_NEON)
template
<
>
struct
Padding
<
float
>
{
static
void
run
(
const
float
*
src
,
float
*
dest
,
int
channels
,
int
inputHeight
,
int
inputWidth
,
int
paddingHeight
,
int
paddingWidth
)
{
const
int
destWidth
=
inputWidth
+
2
*
paddingWidth
;
for
(
int
c
=
0
;
c
<
channels
;
c
++
)
{
if
(
paddingHeight
>
0
)
{
memset
(
dest
,
0
,
destWidth
*
paddingHeight
*
sizeof
(
float
));
dest
+=
destWidth
*
paddingHeight
;
}
for
(
int
i
=
0
;
i
<
inputHeight
;
i
++
)
{
// padding head
for
(
int
j
=
0
;
j
<
paddingWidth
;
j
++
)
{
*
dest
++
=
float
(
0
);
}
int
step
=
inputWidth
>>
2
;
int
remain
=
inputWidth
&
3
;
for
(
int
s
=
0
;
s
<
step
;
s
++
)
{
float32x4_t
s0
=
vld1q_f32
(
src
);
vst1q_f32
(
dest
,
s0
);
src
+=
4
;
dest
+=
4
;
}
for
(
int
r
=
0
;
r
<
remain
;
r
++
)
{
*
dest
++
=
*
src
++
;
}
// padding tail
for
(
int
j
=
0
;
j
<
paddingWidth
;
j
++
)
{
*
dest
++
=
float
(
0
);
}
}
if
(
paddingHeight
>
0
)
{
memset
(
dest
,
0
,
destWidth
*
paddingHeight
*
sizeof
(
float
));
dest
+=
destWidth
*
paddingHeight
;
}
}
}
};
#endif
}
// namespace paddle
paddle/function/neon/NeonDepthwiseConv.cpp
浏览文件 @
40d47fae
...
...
@@ -14,7 +14,6 @@ limitations under the License. */
#include "NeonDepthwiseConv.h"
#include "paddle/function/ConvOp.h"
#include "paddle/function/Im2Col.h"
namespace
paddle
{
...
...
@@ -70,13 +69,13 @@ public:
(
inputWidth
+
2
*
paddingW
());
resizeBuffer
<
Device
>
(
newSize
);
inputPadding
=
reinterpret_cast
<
float
*>
(
memory_
->
getBuf
());
Padding
<
float
>::
run
(
inputData
,
inputPadding
,
batchSize
*
inputChannels
,
inputHeight
,
inputWidth
,
paddingH
(),
paddingW
());
neon
::
Padding
<
float
>::
run
(
inputData
,
inputPadding
,
batchSize
*
inputChannels
,
inputHeight
,
inputWidth
,
paddingH
(),
paddingW
());
// height and width of padding data
inputHeight
+=
2
*
paddingH
();
...
...
paddle/function/neon/NeonDepthwiseConv.h
浏览文件 @
40d47fae
...
...
@@ -14,6 +14,7 @@ limitations under the License. */
#pragma once
#include <string.h>
#include "neon_util.h"
namespace
paddle
{
...
...
@@ -474,6 +475,97 @@ struct DepthwiseConvKernel<4, 2> {
}
};
template
<
class
T
>
struct
Padding
{
static
void
run
(
const
T
*
src
,
T
*
dest
,
int
channels
,
int
inputHeight
,
int
inputWidth
,
int
paddingHeight
,
int
paddingWidth
)
{
const
int
destWidth
=
inputWidth
+
2
*
paddingWidth
;
for
(
int
c
=
0
;
c
<
channels
;
c
++
)
{
if
(
paddingHeight
>
0
)
{
memset
(
dest
,
0
,
destWidth
*
paddingHeight
*
sizeof
(
T
));
dest
+=
destWidth
*
paddingHeight
;
}
for
(
int
i
=
0
;
i
<
inputHeight
;
i
++
)
{
// padding head
for
(
int
j
=
0
;
j
<
paddingWidth
;
j
++
)
{
*
dest
++
=
T
(
0
);
}
memcpy
(
dest
,
src
,
inputWidth
*
sizeof
(
T
));
dest
+=
inputWidth
;
src
+=
inputWidth
;
// padding tail
for
(
int
j
=
0
;
j
<
paddingWidth
;
j
++
)
{
*
dest
++
=
T
(
0
);
}
}
if
(
paddingHeight
>
0
)
{
memset
(
dest
,
0
,
destWidth
*
paddingHeight
*
sizeof
(
T
));
dest
+=
destWidth
*
paddingHeight
;
}
}
}
};
#if defined(__ARM_NEON__) || defined(__ARM_NEON)
template
<
>
struct
Padding
<
float
>
{
static
void
run
(
const
float
*
src
,
float
*
dest
,
int
channels
,
int
inputHeight
,
int
inputWidth
,
int
paddingHeight
,
int
paddingWidth
)
{
const
int
destWidth
=
inputWidth
+
2
*
paddingWidth
;
for
(
int
c
=
0
;
c
<
channels
;
c
++
)
{
if
(
paddingHeight
>
0
)
{
memset
(
dest
,
0
,
destWidth
*
paddingHeight
*
sizeof
(
float
));
dest
+=
destWidth
*
paddingHeight
;
}
for
(
int
i
=
0
;
i
<
inputHeight
;
i
++
)
{
// padding head
for
(
int
j
=
0
;
j
<
paddingWidth
;
j
++
)
{
*
dest
++
=
float
(
0
);
}
int
step
=
inputWidth
>>
2
;
int
remain
=
inputWidth
&
3
;
for
(
int
s
=
0
;
s
<
step
;
s
++
)
{
float32x4_t
s0
=
vld1q_f32
(
src
);
vst1q_f32
(
dest
,
s0
);
src
+=
4
;
dest
+=
4
;
}
for
(
int
r
=
0
;
r
<
remain
;
r
++
)
{
*
dest
++
=
*
src
++
;
}
// padding tail
for
(
int
j
=
0
;
j
<
paddingWidth
;
j
++
)
{
*
dest
++
=
float
(
0
);
}
}
if
(
paddingHeight
>
0
)
{
memset
(
dest
,
0
,
destWidth
*
paddingHeight
*
sizeof
(
float
));
dest
+=
destWidth
*
paddingHeight
;
}
}
}
};
#endif
#endif
}
// namespace neon
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录