Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
2c49b75d
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看板
提交
2c49b75d
编写于
6月 29, 2018
作者:
E
eclipsess
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
conflict
上级
3a128394
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
11 addition
and
11 deletion
+11
-11
src/operators/fusion_conv_add.h
src/operators/fusion_conv_add.h
+5
-5
src/operators/kernel/arm/conv_add_kernel.cpp
src/operators/kernel/arm/conv_add_kernel.cpp
+1
-1
src/operators/kernel/mali/elementwise_add_kernel.cpp
src/operators/kernel/mali/elementwise_add_kernel.cpp
+1
-2
src/operators/kernel/mali/fushion_fc_kernel.cpp
src/operators/kernel/mali/fushion_fc_kernel.cpp
+1
-1
src/operators/kernel/mali/mul_kernel.cpp
src/operators/kernel/mali/mul_kernel.cpp
+1
-1
src/operators/kernel/mali/reshape_kernel.cpp
src/operators/kernel/mali/reshape_kernel.cpp
+1
-1
src/operators/math/depthwise_conv_3x3.cpp
src/operators/math/depthwise_conv_3x3.cpp
+1
-0
未找到文件。
src/operators/fusion_conv_add.h
浏览文件 @
2c49b75d
...
@@ -68,11 +68,11 @@ class FusionConvAddOp : public framework::OperatorWithKernel<
...
@@ -68,11 +68,11 @@ class FusionConvAddOp : public framework::OperatorWithKernel<
#ifdef PADDLE_MOBILE_CPU
#ifdef PADDLE_MOBILE_CPU
//
#ifndef CONV_ADD_REGISTER
#ifndef CONV_ADD_REGISTER
//
static framework::FusionOpRegistrar convadd_registrar(
static
framework
::
FusionOpRegistrar
convadd_registrar
(
//
new FusionConvAddMatcher());
new
FusionConvAddMatcher
());
//
#define CONV_ADD_REGISTER
#define CONV_ADD_REGISTER
//
#endif
#endif
#endif
#endif
...
...
src/operators/kernel/arm/conv_add_kernel.cpp
浏览文件 @
2c49b75d
...
@@ -19,7 +19,7 @@ namespace paddle_mobile {
...
@@ -19,7 +19,7 @@ namespace paddle_mobile {
namespace
operators
{
namespace
operators
{
template
<
>
template
<
>
bool
ConvAddKernel
<
CPU
,
float
>::
Init
(
const
FusionConvAddParam
&
para
)
const
{
bool
ConvAddKernel
<
CPU
,
float
>::
Init
(
FusionConvAddParam
*
param
)
const
{
return
true
;
return
true
;
}
}
...
...
src/operators/kernel/mali/elementwise_add_kernel.cpp
浏览文件 @
2c49b75d
...
@@ -27,8 +27,7 @@ struct AddFunctor {
...
@@ -27,8 +27,7 @@ struct AddFunctor {
};
};
template
<
>
template
<
>
bool
ElementwiseAddKernel
<
GPU_MALI
,
float
>::
Init
(
bool
ElementwiseAddKernel
<
GPU_MALI
,
float
>::
Init
(
ElementwiseAddParam
*
param
)
const
{
const
ElementwiseAddParam
&
para
)
const
{
return
true
;
return
true
;
}
}
...
...
src/operators/kernel/mali/fushion_fc_kernel.cpp
浏览文件 @
2c49b75d
...
@@ -22,7 +22,7 @@ namespace paddle_mobile {
...
@@ -22,7 +22,7 @@ namespace paddle_mobile {
namespace
operators
{
namespace
operators
{
template
<
>
template
<
>
bool
FusionFcKernel
<
GPU_MALI
,
float
>::
Init
(
const
FusionFcParam
&
para
)
const
{
bool
FusionFcKernel
<
GPU_MALI
,
float
>::
Init
(
FusionFcParam
*
param
)
const
{
return
true
;
return
true
;
}
}
...
...
src/operators/kernel/mali/mul_kernel.cpp
浏览文件 @
2c49b75d
...
@@ -22,7 +22,7 @@ namespace paddle_mobile {
...
@@ -22,7 +22,7 @@ namespace paddle_mobile {
namespace
operators
{
namespace
operators
{
template
<
>
template
<
>
bool
MulKernel
<
GPU_MALI
,
float
>::
Init
(
const
MulParam
&
para
)
const
{
bool
MulKernel
<
GPU_MALI
,
float
>::
Init
(
MulParam
*
param
)
const
{
return
true
;
return
true
;
}
}
...
...
src/operators/kernel/mali/reshape_kernel.cpp
浏览文件 @
2c49b75d
...
@@ -22,7 +22,7 @@ namespace paddle_mobile {
...
@@ -22,7 +22,7 @@ namespace paddle_mobile {
namespace
operators
{
namespace
operators
{
template
<
>
template
<
>
bool
ReshapeKernel
<
GPU_MALI
,
float
>::
Init
(
const
ReshapeParam
&
para
)
const
{
bool
ReshapeKernel
<
GPU_MALI
,
float
>::
Init
(
ReshapeParam
*
param
)
const
{
return
true
;
return
true
;
}
}
...
...
src/operators/math/depthwise_conv_3x3.cpp
浏览文件 @
2c49b75d
...
@@ -13,6 +13,7 @@ See the License for the specific language governing permissions and
...
@@ -13,6 +13,7 @@ See the License for the specific language governing permissions and
limitations under the License. */
limitations under the License. */
#include "operators/math/depthwise_conv_3x3.h"
#include "operators/math/depthwise_conv_3x3.h"
#include <vector>
#include <vector>
#include <arm_neon.h>
namespace
paddle_mobile
{
namespace
paddle_mobile
{
namespace
operators
{
namespace
operators
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录