conv_depthwise.h 7.0 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// Copyright (c) 2019 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.

#pragma once

#include <cmath>
#include <vector>
#include "lite/core/context.h"
#include "lite/core/target_wrapper.h"
21
#include "lite/operators/op_params.h"
Y
Yan Chunwei 已提交
22 23 24 25 26 27

namespace paddle {
namespace lite {
namespace arm {
namespace math {

28
void conv_3x3s1_depthwise_fp32(const float* i_data,
Y
Yan Chunwei 已提交
29 30 31 32 33 34 35
                               float* o_data,
                               int bs,
                               int oc,
                               int oh,
                               int ow,
                               int ic,
                               int ih,
36 37 38
                               int win,
                               const float* weights,
                               const float* bias,
Y
Yan Chunwei 已提交
39
                               const operators::ConvParam& param,
40
                               const operators::ActivationParam act_param,
41
                               ARMContext* ctx);
Y
Yan Chunwei 已提交
42

43 44 45 46 47 48 49 50 51 52 53 54 55
void conv_3x3s2_depthwise_fp32(const float* i_data,
                               float* o_data,
                               int bs,
                               int oc,
                               int oh,
                               int ow,
                               int ic,
                               int ih,
                               int win,
                               const float* weights,
                               const float* bias,
                               const operators::ConvParam& param,
                               ARMContext* ctx);
Y
Yan Chunwei 已提交
56

H
HappyAngel 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70
void conv_depthwise_3x3s1_fp32(const float* din,
                               float* dout,
                               int num,
                               int ch_out,
                               int h_out,
                               int w_out,
                               int ch_in,
                               int h_in,
                               int w_in,
                               const float* weights,
                               const float* bias,
                               int pad,
                               bool flag_bias,
                               bool flag_relu,
71
                               const operators::ActivationParam act_param,
H
HappyAngel 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
                               ARMContext* ctx);

void conv_depthwise_3x3s2_fp32(const float* din,
                               float* dout,
                               int num,
                               int ch_out,
                               int h_out,
                               int w_out,
                               int ch_in,
                               int h_in,
                               int w_in,
                               const float* weights,
                               const float* bias,
                               int pad,
                               bool flag_bias,
                               bool flag_relu,
                               ARMContext* ctx);

90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
template <typename Dtype>
void conv_depthwise_3x3s1_int8(Dtype* dout,
                               const int8_t* din,
                               const int8_t* weights,
                               const float* scale,
                               const float* bias,
                               bool flag_bias,
                               bool flag_relu,
                               int num,
                               int chin,
                               int hin,
                               int win,
                               int hout,
                               int wout,
                               int padw,
                               int padh,
                               ARMContext* ctx);
Y
Yan Chunwei 已提交
107

108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
template <typename Dtype>
void conv_depthwise_3x3s2_int8(Dtype* dout,
                               const int8_t* din,
                               const int8_t* weights,
                               const float* scale,
                               const float* bias,
                               bool flag_bias,
                               bool flag_relu,
                               int num,
                               int chin,
                               int hin,
                               int win,
                               int hout,
                               int wout,
                               int padw,
                               int padh,
                               ARMContext* ctx);
Y
Yan Chunwei 已提交
125

126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
void conv_depthwise_5x5s1_fp32(const float* din,
                               float* dout,
                               int num,
                               int chout,
                               int hout,
                               int wout,
                               int chin,
                               int hin,
                               int win,
                               const float* weights,
                               const float* bias,
                               int pad,
                               bool flag_bias,
                               bool flag_relu,
                               ARMContext* ctx);
Y
Yan Chunwei 已提交
141

142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
void conv_depthwise_5x5s2_fp32(const float* din,
                               float* dout,
                               int num,
                               int chout,
                               int hout,
                               int wout,
                               int chin,
                               int hin,
                               int win,
                               const float* weights,
                               const float* bias,
                               int pad,
                               bool flag_bias,
                               bool flag_relu,
                               ARMContext* ctx);
Y
Yan Chunwei 已提交
157

Y
yiicy 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
template <typename Dtype>
void conv_depthwise_5x5s1_int8(Dtype* dout,
                               const int8_t* din,
                               const int8_t* weights,
                               const float* scale,
                               const float* bias,
                               bool flag_bias,
                               bool flag_relu,
                               int num,
                               int chin,
                               int hin,
                               int win,
                               int hout,
                               int wout,
                               int padw,
                               int padh,
                               ARMContext* ctx);

Y
Yan Chunwei 已提交
176 177 178 179
}  // namespace math
}  // namespace arm
}  // namespace lite
}  // namespace paddle