bias_scale.cpp 3.7 KB
Newer Older
Z
zhangyang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

Z
zhangyang 已提交
15
#include "fpga/V1/bias_scale.h"
Z
zhangyang 已提交
16
#include <memory.h>
Z
zhangyang 已提交
17
#include "fpga/common/fpga_common.h"
Z
zhangyang 已提交
18 19

namespace paddle_mobile {
Z
zhangyang 已提交
20 21 22 23
namespace fpga {
namespace bias_scale {

void align_element(float **data_in, int num_per_div_before_alignment, int num) {
Z
zhangyang 已提交
24
  int copynum = 0;
Z
zhangyang 已提交
25 26 27 28 29 30 31
  float *ptr_unaligned = *data_in;
  int div_num =
      (num + num_per_div_before_alignment - 1) / num_per_div_before_alignment;
  int num_per_div_after_alignment =
      align_to_x(num_per_div_before_alignment, BS_NUM_ALIGNMENT);
  int num_element =
      2 * div_num * num_per_div_after_alignment;  // including bias & scale
32 33
  float *ptr_aligned =
      (float *)fpga_malloc(num_element * sizeof(float));  // NOLINT
Z
zhangyang 已提交
34 35 36 37

  memset(ptr_aligned, 0, num_element * sizeof(float));

  for (int i = 0; i < div_num; i++) {
Z
zhangyang 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51
    if (i == div_num - 1) {
      copynum = (num_per_div_after_alignment * div_num > num)
                    ? (num % num_per_div_after_alignment)
                    : (num_per_div_before_alignment);
    } else {
      copynum = num_per_div_before_alignment;
    }

    memcpy(ptr_aligned + i * num_per_div_after_alignment,
           ptr_unaligned + num_per_div_before_alignment * i,
           copynum * sizeof(float));
    memcpy(ptr_aligned + (div_num + i) * num_per_div_after_alignment,
           ptr_unaligned + num_per_div_before_alignment * i + num,
           copynum * sizeof(float));
Z
zhangyang 已提交
52 53 54 55 56 57 58 59 60 61 62
  }

  fpga_free(ptr_unaligned);
  *data_in = ptr_aligned;
}

void interleave(float **data_in, int num_after_alignment) {
  // num_after_alignment: number of bias after alignment

  float *ptr_uninterleaved = *data_in;
  float *ptr_interleaved =
63
      (float *)fpga_malloc(2 * num_after_alignment * sizeof(float));  // NOLINT
Z
zhangyang 已提交
64 65 66 67 68
  int num = num_after_alignment / 4;
  for (int i = 0; i < num; i++) {
    memcpy(ptr_interleaved + 8 * i, ptr_uninterleaved + 4 * i,
           4 * sizeof(float));
    memcpy(ptr_interleaved + 8 * i + 4,
Z
zhangyang 已提交
69
           ptr_uninterleaved + num_after_alignment + 4 * i, 4 * sizeof(float));
Z
zhangyang 已提交
70 71 72 73 74 75
  }

  fpga_free(ptr_uninterleaved);
  *data_in = ptr_interleaved;
}

Z
zhangyang 已提交
76 77 78 79 80 81 82
void format_bias_scale_array(float **bias_scale_array,
                             int element_num_per_division, int num) {
  align_element(bias_scale_array, element_num_per_division, num);
  int div_num = (num + element_num_per_division - 1) / element_num_per_division;
  int element_num_after_division =
      align_to_x(element_num_per_division, BS_NUM_ALIGNMENT);
  interleave(bias_scale_array, div_num * element_num_after_division);
83
  fpga_flush(*bias_scale_array, 2 * element_num_after_division * sizeof(float));
Z
zhangyang 已提交
84
}
85 86 87 88
void format_bias_array(float **bias_array, int num) {
  float *ptr_unaligned = *bias_array;
  int num_before_align = num;
  int num_after_align = align_to_x(num_before_align, BIAS_NUM_ALIGNMENT);
89 90
  int16_t *ptr_aligned =
      (int16_t *)fpga_malloc(num_after_align * sizeof(int16_t));  // NOLINT
91

92 93 94
  memset(ptr_aligned, 0, num_after_align * sizeof(int16_t));
  for (int i = 0; i < num_before_align; i++) {
    ptr_aligned[i] = fp32_2_fp16(ptr_unaligned[i]);
95
  }
96
  *bias_array = (float *)ptr_aligned;  // NOLINT
97 98
  fpga_free(ptr_unaligned);
}
Z
zhangyang 已提交
99

Z
zhangyang 已提交
100 101 102
}  // namespace bias_scale
}  // namespace fpga
}  // namespace paddle_mobile