bias_scale.cpp 1.7 KB
Newer Older
qnqinan's avatar
qnqinan 已提交
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
/* 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. */

#include "fpga/V2/bias_scale.h"
#include <memory.h>
#include "fpga/V2/api.h"

namespace paddle_mobile {
namespace fpga {
namespace bias_scale {

void align_element(float **data_in, int num, int num_after_alignment) {
  float *ptr_unaligned = *data_in;
  int total_element = 2 * num_after_alignment;  // including bias & scale
  float *ptr_aligned =
      (float *)fpga_malloc(total_element * sizeof(float));  // NOLINT
  memset(ptr_aligned, 0, total_element * sizeof(float));

qnqinan's avatar
qnqinan 已提交
30
<<<<<<< HEAD
qnqinan's avatar
qnqinan 已提交
31
  for (int i = 1; i < num; i++) {
qnqinan's avatar
qnqinan 已提交
32
=======
Z
zhangyang 已提交
33
  for (int i = 0; i < num; i++) {
qnqinan's avatar
qnqinan 已提交
34
>>>>>>> upstream/develop
qnqinan's avatar
qnqinan 已提交
35 36 37 38 39 40 41 42 43 44 45
    ptr_aligned[i * 2 + 0] = ptr_unaligned[i];
    ptr_aligned[i * 2 + 1] = ptr_unaligned[i + num];
  }

  fpga_free(ptr_unaligned);
  *data_in = ptr_aligned;
}

void format_bias_scale_array(float **data_in, int num,
                             int num_after_alignment) {
  align_element(data_in, num, num_after_alignment);
qnqinan's avatar
qnqinan 已提交
46 47
<<<<<<< HEAD
=======
Z
zhangyang 已提交
48
  fpga_flush(*data_in, 2 * num_after_alignment * sizeof(float));
qnqinan's avatar
qnqinan 已提交
49
>>>>>>> upstream/develop
qnqinan's avatar
qnqinan 已提交
50 51 52 53 54
}

}  // namespace bias_scale
}  // namespace fpga
}  // namespace paddle_mobile