提交 2c49b75d 编写于 作者: E eclipsess

conflict

上级 3a128394
...@@ -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
......
...@@ -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;
} }
......
...@@ -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;
} }
......
...@@ -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;
} }
......
...@@ -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;
} }
......
...@@ -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;
} }
......
...@@ -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.
先完成此消息的编辑!
想要评论请 注册