conv_add_kernel.cpp 2.0 KB
Newer Older
W
wangliu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
H
hjchen2 已提交
14

W
wangliu 已提交
15 16 17
#ifdef FUSION_CONVADD_OP

#include "operators/kernel/conv_add_kernel.h"
18
#include "operators/kernel/arm/convolution/conv_common.h"
H
hjchen2 已提交
19
#include "operators/kernel/central-arm-func/conv_arm_func.h"
H
update  
hjchen2 已提交
20
#include "operators/math/channel_wise.h"
W
wangliu 已提交
21 22 23 24

namespace paddle_mobile {
namespace operators {

L
liuruilong 已提交
25
template <>
N
nhzlx 已提交
26
bool ConvAddKernel<CPU, float>::Init(FusionConvAddParam<CPU> *param) {
27
  InitBaseConvKernel(param);
L
liuruilong 已提交
28 29 30
  return true;
}

W
wangliu 已提交
31
template <>
32
void ConvAddKernel<CPU, float>::Compute(const FusionConvAddParam<CPU> &param) {
33 34 35
  switch (param.ExecMode()) {
    case ConvParam<CPU>::EXEC_DEPTHWISE3x3S1_FLOAT:
    case ConvParam<CPU>::EXEC_DEPTHWISE3x3S2_FLOAT:
S
StarryRain 已提交
36
      DepthwiseConv3x3<float, float>(param);
37 38 39 40 41 42 43 44
      break;
    case ConvParam<CPU>::EXEC_DEPTHWISE5x5_FLOAT:
      DepthwiseConv5x5<float, float>(param);
      break;
    case ConvParam<CPU>::EXEC_WINOGRAD3X3_FLOAT:
      WinogradConv3x3<8, 3>(param);
      break;
    case ConvParam<CPU>::EXEC_GEMM_FLOAT:
H
update  
hjchen2 已提交
45
      GemmConv<float, float>(param);
46
      break;
S
StarryRain 已提交
47 48 49 50
    case ConvParam<CPU>::EXEC_SLIDINGWINDOW3x3S1_FLOAT:
    case ConvParam<CPU>::EXEC_SLIDINGWINDOW3x3S2_FLOAT:
      SlidingwindowConv3x3<float, float>(param);
      break;
51 52 53 54
    default:
      PADDLE_MOBILE_THROW_EXCEPTION("Invalid convolution execute mode %d",
                                    param.ExecMode());
  }
H
update  
hjchen2 已提交
55
  math::AddChannelWise<IDENTITY>(param.Output(), param.Bias(), param.Output());
W
wangliu 已提交
56 57
}

W
wangliu 已提交
58 59 60 61 62 63
template class ConvAddKernel<CPU, float>;

}  // namespace operators
}  // namespace paddle_mobile

#endif