conv3x3s2px_depthwise_fp32.cc 16.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
// 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.

#include <arm_neon.h>
#include "lite/backends/arm/math/conv_block_utils.h"
#include "lite/backends/arm/math/conv_impl.h"
#include "lite/core/context.h"
#include "lite/operators/op_params.h"
#ifdef ARM_WITH_OMP
#include <omp.h>
#endif

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

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) {
H
HappyAngel 已提交
42
  auto paddings = *param.paddings;
43
  int threads = ctx->threads();
H
HappyAngel 已提交
44 45
  const int pad_h = paddings[0];
  const int pad_w = paddings[2];
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
  const int out_c_block = 4;
  const int out_h_kernel = 1;
  const int out_w_kernel = 4;
  const int win_ext = ow * 2 + 1;
  const int ow_round = ROUNDUP(ow, 4);
  const int win_round = ROUNDUP(win_ext, 4);
  const int hin_round = oh * 2 + 1;
  const int prein_size = win_round * hin_round * out_c_block;
  auto workspace_size =
      threads * prein_size + win_round /*tmp zero*/ + ow_round /*tmp writer*/;
  ctx->ExtendWorkspace(sizeof(float) * workspace_size);

  bool flag_relu = param.fuse_relu;
  bool flag_bias = param.bias != nullptr;

  /// get workspace
  auto ptr_zero = ctx->workspace_data<float>();
  memset(ptr_zero, 0, sizeof(float) * win_round);
  float* ptr_write = ptr_zero + win_round;

  int size_in_channel = win * ih;
  int size_out_channel = ow * oh;

  int ws = -pad_w;
  int we = ws + win_round;
  int hs = -pad_h;
  int he = hs + hin_round;
  int w_loop = ow_round / 4;
  auto remain = w_loop * 4 - ow;
  bool flag_remain = remain > 0;
  remain = 4 - remain;
  remain = remain > 0 ? remain : 0;
  int row_len = win_round * out_c_block;

  for (int n = 0; n < bs; ++n) {
    const float* din_batch = i_data + n * ic * size_in_channel;
    float* dout_batch = o_data + n * oc * size_out_channel;
#pragma omp parallel for num_threads(threads)
    for (int c = 0; c < oc; c += out_c_block) {
#ifdef ARM_WITH_OMP
      float* pre_din = ptr_write + ow_round + omp_get_thread_num() * prein_size;
#else
      float* pre_din = ptr_write + ow_round;
#endif
      /// const array size
      prepack_input_nxwc4_dw(
          din_batch, pre_din, c, hs, he, ws, we, ic, win, ih, ptr_zero);
      const float* weight_c = weights + c * 9;  // kernel_w * kernel_h
      float* dout_c00 = dout_batch + c * size_out_channel;
      float bias_local[4] = {0, 0, 0, 0};
      if (flag_bias) {
        bias_local[0] = bias[c];
        bias_local[1] = bias[c + 1];
        bias_local[2] = bias[c + 2];
        bias_local[3] = bias[c + 3];
      }
#ifdef __aarch64__
      float32x4_t w0 = vld1q_f32(weight_c);       // w0, v23
      float32x4_t w1 = vld1q_f32(weight_c + 4);   // w1, v24
      float32x4_t w2 = vld1q_f32(weight_c + 8);   // w2, v25
      float32x4_t w3 = vld1q_f32(weight_c + 12);  // w3, v26
      float32x4_t w4 = vld1q_f32(weight_c + 16);  // w4, v27
      float32x4_t w5 = vld1q_f32(weight_c + 20);  // w5, v28
      float32x4_t w6 = vld1q_f32(weight_c + 24);  // w6, v29
      float32x4_t w7 = vld1q_f32(weight_c + 28);  // w7, v30
      float32x4_t w8 = vld1q_f32(weight_c + 32);  // w8, v31
#endif
      for (int h = 0; h < oh; h += out_h_kernel) {
        float* outc0 = dout_c00 + h * ow;
        float* outc1 = outc0 + size_out_channel;
        float* outc2 = outc1 + size_out_channel;
        float* outc3 = outc2 + size_out_channel;
        const float* inr0 = pre_din + h * 2 * row_len;
        const float* inr1 = inr0 + row_len;
        const float* inr2 = inr1 + row_len;
        if (c + out_c_block > oc) {
          switch (c + out_c_block - oc) {
            case 3:
              outc1 = ptr_write;
            case 2:
              outc2 = ptr_write;
            case 1:
              outc3 = ptr_write;
            default:
              break;
          }
        }
        auto c0 = outc0;
        auto c1 = outc1;
        auto c2 = outc2;
        auto c3 = outc3;
        float pre_out[16];
        for (int w = 0; w < w_loop; ++w) {
          bool flag_mask = (w == w_loop - 1) && flag_remain;
          if (flag_mask) {
            c0 = outc0;
            c1 = outc1;
            c2 = outc2;
            c3 = outc3;
            outc0 = pre_out;
            outc1 = pre_out + 4;
            outc2 = pre_out + 8;
            outc3 = pre_out + 12;
          }
// clang-format off
#ifdef __aarch64__
          asm volatile(
          "ldr    q8, [%[bias]]\n"         /* load bias */
          "ldp    q0, q1,   [%[inr0]], #32\n" /* load input r0*/
          "and    v19.16b,  v8.16b, v8.16b\n"
          "ldp    q2, q3,   [%[inr0]], #32\n" /* load input r0*/
          "and    v20.16b,  v8.16b, v8.16b\n"
          "ldp    q4, q5,   [%[inr0]], #32\n" /* load input r0*/
          "and    v21.16b,  v8.16b, v8.16b\n"
          "ldp    q6, q7,   [%[inr0]], #32\n" /* load input r0*/
          "and    v22.16b,  v8.16b, v8.16b\n"
          "ldr    q8,       [%[inr0]]\n"      /* load input r0*/
          /*  r0 mul w0-w2, get out */
          "fmla   v19.4s ,  %[w0].4s,  v0.4s\n" /* outr0 = w0 * r0, 0*/
          "fmla   v20.4s ,  %[w0].4s,  v2.4s\n" /* outr1 = w0 * r0, 2*/
          "fmla   v21.4s ,  %[w0].4s,  v4.4s\n" /* outr2 = w0 * r0, 4*/
          "fmla   v22.4s ,  %[w0].4s,  v6.4s\n" /* outr3 = w0 * r0, 6*/
          "fmla   v19.4s ,  %[w1].4s,  v1.4s\n" /* outr0 = w1 * r0, 1*/
          "ldp    q0, q1,   [%[inr1]], #32\n"   /* load input r1*/
          "fmla   v20.4s ,  %[w1].4s,  v3.4s\n" /* outr1 = w1 * r0, 3*/
          "fmla   v21.4s ,  %[w1].4s,  v5.4s\n" /* outr2 = w1 * r0, 5*/
          "fmla   v22.4s ,  %[w1].4s,  v7.4s\n" /* outr3 = w1 * r0, 7*/
          "fmla   v19.4s ,  %[w2].4s,  v2.4s\n" /* outr0 = w0 * r0, 2*/
          "ldp    q2, q3,   [%[inr1]], #32\n"   /* load input r1*/
          "fmla   v20.4s ,  %[w2].4s,  v4.4s\n" /* outr1 = w0 * r0, 4*/
          "ldp    q4, q5,   [%[inr1]], #32\n"   /* load input r1*/
          "fmla   v21.4s ,  %[w2].4s,  v6.4s\n" /* outr2 = w0 * r0, 6*/
          "ldp    q6, q7,   [%[inr1]], #32\n"   /* load input r1*/
          "fmla   v22.4s ,  %[w2].4s,  v8.4s\n" /* outr3 = w0 * r0, 8*/
          "ldr    q8,   [%[inr1]]\n"            /* load input r1*/
          /*  r1, mul w3-w5, get out */
          "fmla   v19.4s ,  %[w3].4s,  v0.4s\n" /* outr0 = w3 * r1, 0*/
          "fmla   v20.4s ,  %[w3].4s,  v2.4s\n" /* outr1 = w3 * r1, 2*/
          "fmla   v21.4s ,  %[w3].4s,  v4.4s\n" /* outr2 = w3 * r1, 4*/
          "fmla   v22.4s ,  %[w3].4s,  v6.4s\n" /* outr3 = w3 * r1, 6*/
          "fmla   v19.4s ,  %[w4].4s,  v1.4s\n" /* outr0 = w4 * r1, 1*/
          "ldp    q0, q1,   [%[inr2]], #32\n"   /* load input r2*/
          "fmla   v20.4s ,  %[w4].4s,  v3.4s\n" /* outr1 = w4 * r1, 3*/
          "fmla   v21.4s ,  %[w4].4s,  v5.4s\n" /* outr2 = w4 * r1, 5*/
          "fmla   v22.4s ,  %[w4].4s,  v7.4s\n" /* outr3 = w4 * r1, 7*/
          "fmla   v19.4s ,  %[w5].4s,  v2.4s\n" /* outr0 = w5 * r1, 2*/
          "ldp    q2, q3,   [%[inr2]], #32\n"   /* load input r2*/
          "fmla   v20.4s ,  %[w5].4s,  v4.4s\n" /* outr1 = w5 * r1, 4*/
          "ldp    q4, q5,   [%[inr2]], #32\n"   /* load input r2*/
          "fmla   v21.4s ,  %[w5].4s,  v6.4s\n" /* outr2 = w5 * r1, 6*/
          "ldp    q6, q7,   [%[inr2]], #32\n"   /* load input r2*/
          "fmla   v22.4s ,  %[w5].4s,  v8.4s\n" /* outr3 = w5 * r1, 8*/
          "ldr    q8,   [%[inr2]]\n"            /* load input r2*/
          /*  r2, mul w6-w8, get out r0, r1 */
          "fmla   v19.4s ,  %[w6].4s,  v0.4s\n" /* outr0 = w6 * r2, 0*/
          "fmla   v20.4s ,  %[w6].4s,  v2.4s\n" /* outr1 = w6 * r2, 2*/
          "fmla   v21.4s ,  %[w6].4s,  v4.4s\n" /* outr2 = w6 * r2, 4*/
          "fmla   v22.4s ,  %[w6].4s,  v6.4s\n" /* outr3 = w6 * r2, 6*/
          "fmla   v19.4s ,  %[w7].4s,  v1.4s\n" /* outr0 = w7 * r2, 1*/
          "fmla   v20.4s ,  %[w7].4s,  v3.4s\n" /* outr1 = w7 * r2, 3*/
          "fmla   v21.4s ,  %[w7].4s,  v5.4s\n" /* outr2 = w7 * r2, 5*/
          "fmla   v22.4s ,  %[w7].4s,  v7.4s\n" /* outr3 = w7 * r2, 7*/
          "fmla   v19.4s ,  %[w8].4s,  v2.4s\n" /* outr0 = w8 * r2, 2*/
          "fmla   v20.4s ,  %[w8].4s,  v4.4s\n" /* outr1 = w8 * r2, 4*/
          "fmla   v21.4s ,  %[w8].4s,  v6.4s\n" /* outr2 = w8 * r2, 6*/
          "fmla   v22.4s ,  %[w8].4s,  v8.4s\n" /* outr3 = w8 * r2, 8*/
          /* transpose */
          "trn1 v0.4s, v19.4s, v20.4s\n" /* r0: a0a1c0c1*/
          "trn2 v1.4s, v19.4s, v20.4s\n" /* r0: b0b1d0d1*/
          "trn1 v2.4s, v21.4s, v22.4s\n" /* r0: a2a3c2c3*/
          "trn2 v3.4s, v21.4s, v22.4s\n" /* r0: b2b3d2d3*/
          "trn1 v19.2d, v0.2d, v2.2d\n"  /* r0: a0a1a2a3*/
          "trn2 v21.2d, v0.2d, v2.2d\n"  /* r0: c0c1c2c3*/
          "trn1 v20.2d, v1.2d, v3.2d\n"  /* r0: b0b1b2b3*/
          "trn2 v22.2d, v1.2d, v3.2d\n"  /* r0: d0d1d2d3*/
          /* relu */
          "cbz  %w[flag_relu],  0f\n"    /* skip relu*/
          "movi v0.4s, #0\n"             /* for relu */
          "fmax v19.4s, v19.4s, v0.4s\n"
          "fmax v20.4s, v20.4s, v0.4s\n"
          "fmax v21.4s, v21.4s, v0.4s\n"
          "fmax v22.4s, v22.4s, v0.4s\n"
          /* save result */
          "0:\n"
          "str q19, [%[outc0]], #16\n"
          "str q20, [%[outc1]], #16\n"
          "str q21, [%[outc2]], #16\n"
          "str q22, [%[outc3]], #16\n"
          :[inr0] "+r"(inr0), [inr1] "+r"(inr1),
          [inr2] "+r"(inr2),
          [outc0]"+r"(outc0), [outc1]"+r"(outc1),
          [outc2]"+r"(outc2), [outc3]"+r"(outc3)
          :[w0] "w"(w0), [w1] "w"(w1), [w2] "w"(w2),
          [w3] "w"(w3), [w4] "w"(w4), [w5] "w"(w5),
          [w6] "w"(w6), [w7] "w"(w7), [w8] "w"(w8),
          [bias] "r" (bias_local), [flag_relu]"r"(flag_relu)
          : "cc", "memory",
                  "v0","v1","v2","v3","v4","v5","v6","v7",
                  "v8", "v19","v20","v21","v22"
          );
#else
          asm volatile(
          /* fill with bias */
          "vld1.32  {d16-d17}, [%[bias]]\n"   /* load bias */
          /* load weights */
          "vld1.32    {d18-d21}, [%[wc0]]!\n" /* load w0-2, to q9-11 */
          "vld1.32  {d0-d3},   [%[r0]]!\n"    /* load input r0, 0,1*/
          "vand.i32 q12,  q8, q8\n"
          "vld1.32  {d4-d7},   [%[r0]]!\n"    /* load input r0, 2,3*/
          "vand.i32 q13,  q8, q8\n"
          "vld1.32  {d8-d11},  [%[r0]]!\n"    /* load input r0, 4,5*/
          "vand.i32 q14,  q8, q8\n"
          "vld1.32  {d12-d15}, [%[r0]]!\n"    /* load input r0, 6,7*/
          "vand.i32 q15,  q8, q8\n"
          "vld1.32  {d16-d17}, [%[r0]]\n"     /* load input r0, 8*/
          /* mul r0 with w0, w1, w2 */
          "vmla.f32   q12, q9, q0               @ w0 * inr0\n"
          "vmla.f32   q13, q9, q2               @ w0 * inr2\n"
          "vld1.32    {d22-d23}, [%[wc0]]!\n"   /* load w2, to q11 */
          "vmla.f32   q14, q9, q4               @ w0 * inr4\n"
          "vmla.f32   q15, q9, q6               @ w0 * inr6\n"
          "vmla.f32   q12, q10, q1              @ w1 * inr1\n"
          "vld1.32    {d0-d3}, [%[r1]]!         @ load r1, 0, 1\n"
          "vmla.f32   q13, q10, q3              @ w1 * inr3\n"
          "vmla.f32   q14, q10, q5              @ w1 * inr5\n"
          "vmla.f32   q15, q10, q7              @ w1 * inr7\n"
          "vld1.32    {d18-d21}, [%[wc0]]!\n"  /* load w3-4, to q9-10 */
          "vmla.f32   q12, q11, q2              @ w2 * inr2\n"
          "vld1.32    {d4-d7}, [%[r1]]!         @ load r1, 2, 3\n"
          "vmla.f32   q13, q11, q4              @ w2 * inr4\n"
          "vld1.32    {d8-d11}, [%[r1]]!        @ load r1, 4, 5\n"
          "vmla.f32   q14, q11, q6              @ w2 * inr6\n"
          "vld1.32    {d12-d15}, [%[r1]]!       @ load r1, 6, 7\n"
          "vmla.f32   q15, q11, q8              @ w2 * inr8\n"
          /* mul r1 with w3, w4, w5 */
          "vmla.f32   q12, q9, q0               @ w3 * inr0\n"
          "vmla.f32   q13, q9, q2               @ w3 * inr2\n"
          "vld1.32    {d22-d23}, [%[wc0]]!\n"   /* load w5, to q11 */
          "vmla.f32   q14, q9, q4               @ w3 * inr4\n"
          "vmla.f32   q15, q9, q6               @ w3 * inr6\n"
          "vld1.32    {d16-d17}, [%[r1]]\n"     /* load input r1, 8*/
          "vmla.f32   q12, q10, q1              @ w4 * inr1\n"
          "vld1.32    {d0-d3}, [%[r2]]!         @ load r2, 0, 1\n"
          "vmla.f32   q13, q10, q3              @ w4 * inr3\n"
          "vmla.f32   q14, q10, q5              @ w4 * inr5\n"
          "vmla.f32   q15, q10, q7              @ w4 * inr7\n"
          "vld1.32    {d18-d21}, [%[wc0]]!\n"   /* load w6-7, to q9-10 */
          "vmla.f32   q12, q11, q2              @ w5 * inr2\n"
          "vld1.32    {d4-d7}, [%[r2]]!         @ load r2, 2, 3\n"
          "vmla.f32   q13, q11, q4              @ w5 * inr4\n"
          "vld1.32    {d8-d11}, [%[r2]]!        @ load r2, 4, 5\n"
          "vmla.f32   q14, q11, q6              @ w5 * inr6\n"
          "vld1.32    {d12-d15}, [%[r2]]!       @ load r2, 6, 7\n"
          "vmla.f32   q15, q11, q8              @ w5 * inr8\n"
          /* mul r2 with w6, w7, w8 */
          "vmla.f32   q12, q9, q0               @ w6 * inr0\n"
          "vmla.f32   q13, q9, q2               @ w6 * inr2\n"
          "vld1.32    {d22-d23}, [%[wc0]]!\n"   /* load w8, to q11 */
          "vmla.f32   q14, q9, q4               @ w6 * inr4\n"
          "vmla.f32   q15, q9, q6               @ w6 * inr6\n"
          "vld1.32    {d16-d17}, [%[r2]]\n"     /* load input r2, 8*/
          "vmla.f32   q12, q10, q1              @ w7 * inr1\n"
          "vmla.f32   q13, q10, q3              @ w7 * inr3\n"
          "vmla.f32   q14, q10, q5              @ w7 * inr5\n"
          "vmla.f32   q15, q10, q7              @ w7 * inr7\n"
          "sub    %[wc0], %[wc0], #144          @ wc0 - 144 to start address\n"
          "vmla.f32   q12, q11, q2              @ w8 * inr2\n"
          "vmla.f32   q13, q11, q4              @ w8 * inr4\n"
          "vmla.f32   q14, q11, q6              @ w8 * inr6\n"
          "vmla.f32   q15, q11, q8              @ w8 * inr8\n"
          /* transpose */
          "vtrn.32 q12, q13\n"    /* a0a1c0c1, b0b1d0d1*/
          "vtrn.32 q14, q15\n"    /* a2a3c2c3, b2b3d2d3*/
          "vswp   d25, d28\n"     /* a0a1a2a3, c0c1c2c3*/
          "vswp   d27, d30\n"     /* b0b1b2b3, d0d1d2d3*/
          "cmp  %[flag_relu], #0\n"
          "beq  0f\n"             /* skip relu*/
          "vmov.u32 q0, #0\n"
          "vmax.f32 q12, q12, q0\n"
          "vmax.f32 q13, q13, q0\n"
          "vmax.f32 q14, q14, q0\n"
          "vmax.f32 q15, q15, q0\n"
          "0:\n"
          "vst1.32 {d24-d25}, [%[outc0]]!\n" /* save outc0*/
          "vst1.32 {d26-d27}, [%[outc1]]!\n" /* save outc1*/
          "vst1.32 {d28-d29}, [%[outc2]]!\n" /* save outc2*/
          "vst1.32 {d30-d31}, [%[outc3]]!\n" /* save outc3*/
          :[r0] "+r"(inr0), [r1] "+r"(inr1),
           [r2] "+r"(inr2), [wc0] "+r" (weight_c),
           [outc0]"+r"(outc0), [outc1]"+r"(outc1),
           [outc2]"+r"(outc2), [outc3]"+r"(outc3)
          :[bias] "r" (bias_local),
           [flag_relu]"r"(flag_relu)
          :"cc", "memory",
            "q0","q1","q2","q3","q4","q5","q6","q7",
            "q8", "q9","q10","q11","q12","q13","q14","q15"
          );
#endif  //  __arch64__
          // clang-format off
          if (flag_mask) {
            for (int i = 0; i < remain; ++i) {
              c0[i] = pre_out[i];
              c1[i] = pre_out[i + 4];
              c2[i] = pre_out[i + 8];
              c3[i] = pre_out[i + 12];
            }
          }
        }
      }
    }
  }
}

}  // namespace math
}  // namespace arm
}  // namespace lite
}  // namespace paddle