api.cpp 10.6 KB
Newer Older
H
hanbuhe 已提交
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/V2/api.h"
H
hanbuhe 已提交
16
#include <algorithm>
Z
zhangyang 已提交
17
#include "fpga/V2/bias_scale.h"
Z
zhangyang 已提交
18
#include "fpga/V2/config.h"
Z
zhangyang 已提交
19 20
#include "fpga/V2/filter.h"
#include "fpga/V2/image.h"
Z
zhangyang 已提交
21

Z
zhangyang 已提交
22
namespace paddle_mobile {
H
hanbuhe 已提交
23
namespace fpga {
24
static std::map<void *, size_t> memory_map;
H
hanbuhe 已提交
25

Z
zhangyang 已提交
26 27 28
int open_device() {
  int ret = open_device_driver();
  return ret;
Z
zhangyang 已提交
29
}
H
hanbuhe 已提交
30

Z
zhangyang 已提交
31 32 33
int close_device() {
  int ret = close_device_driver();
  return ret;
H
hanbuhe 已提交
34 35 36
}

void *fpga_malloc(size_t size) {
37
  static uint64_t counter = 0;
Z
zhangyang 已提交
38 39
#ifdef PADDLE_MOBILE_ZU5
  auto ptr = fpga_malloc_driver(size);
H
hanbuhe 已提交
40
#else
41
  auto ptr = malloc(size);
H
hanbuhe 已提交
42
#endif
43 44
  counter += size;
  memory_map.insert(std::make_pair(ptr, size));
Z
zhangyang 已提交
45 46
  //  DLOG << "Address: " << ptr << ", " << size << " bytes allocated. Total "
  //       << counter << " bytes";
47
  return ptr;
H
hanbuhe 已提交
48 49
}

50
void fpga_free(void *ptr) {
51 52 53 54 55 56
  static uint64_t counter = 0;
  size_t size = 0;
  auto iter = memory_map.find(ptr);  // std::map<void *, size_t>::iterator
  if (iter != memory_map.end()) {
    size = iter->second;
    memory_map.erase(iter);
Z
zhangyang 已提交
57 58
#ifdef PADDLE_MOBILE_ZU5
    fpga_free_driver(ptr);
59
#else
60
    free(ptr);
61
#endif
62
    counter += size;
Z
zhangyang 已提交
63 64
    //    DLOG << "Address: " << ptr << ", " << size << " bytes freed. Total "
    //         << counter << " bytes";
65 66 67
  } else {
    DLOG << "Invalid pointer";
  }
68
}
H
hanbuhe 已提交
69

Z
zhangyang 已提交
70
half fp32_2_fp16(float fp32_num) {
Z
zhangyang 已提交
71
  unsigned long tmp = *(unsigned long *)(&fp32_num);  // NOLINT
Z
zhangyang 已提交
72 73
  auto t = (half)(((tmp & 0x007fffff) >> 13) | ((tmp & 0x80000000) >> 16) |
                  (((tmp & 0x7f800000) >> 13) - (112 << 10)));
Z
zhangyang 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86
  if (tmp & 0x1000) {
    t++;  // roundoff
  }
  return t;
}

float fp16_2_fp32(half fp16_num) {
  int frac = (fp16_num & 0x3ff);
  int exp = ((fp16_num & 0x7c00) >> 10) + 112;
  int s = fp16_num & 0x8000;
  int tmp = 0;
  float fp32_num;
  tmp = s << 16 | exp << 23 | frac << 13;
Z
zhangyang 已提交
87
  fp32_num = *(float *)&tmp;  // NOLINT
Z
zhangyang 已提交
88 89 90
  return fp32_num;
}

Z
zhangyang 已提交
91 92
void format_image(framework::Tensor *image_tensor) {
  auto dims = image_tensor->dims();
Z
zhangyang 已提交
93
  auto channel = dims[1], height = dims[2], width = dims[3];
94
  auto data_ptr = image_tensor->data<float>();
Z
zhangyang 已提交
95
  size_t memory_size = channel * height * width * sizeof(float);
96
  auto new_data = (float *)fpga_malloc(memory_size);  // NOLINT
Z
zhangyang 已提交
97
  memcpy(new_data, data_ptr, memory_size);
Z
zhangyang 已提交
98 99 100 101
  int aligned_channel = filter::calc_aligned_channel((int)channel);  // NOLINT
  image::format_image(&new_data, (int)channel, (int)height,          // NOLINT
                      (int)width,                                    // NOLINT
                      aligned_channel);
Z
zhangyang 已提交
102 103 104
  image_tensor->reset_data_ptr(new_data);
}

Z
zhangyang 已提交
105
void format_fp16_ofm(framework::Tensor *ofm_tensor, int aligned_channel) {
Z
zhangyang 已提交
106
  auto dims = ofm_tensor->dims();
107 108
  size_t memory_size = 0;
  if (dims.size() == 4) {
Z
zhangyang 已提交
109
    auto height = dims[2], width = dims[3];
Z
zhangyang 已提交
110
    memory_size = (height + 1) / 2 * 2 * width * aligned_channel * sizeof(half);
111
  } else if (dims.size() == 2) {
Z
zhangyang 已提交
112
    memory_size = aligned_channel * sizeof(half);
113 114 115 116 117 118 119 120
  } else {
    DLOG << "Wrong ofm dimension";
  }
  auto p = fpga_malloc(memory_size);
  memset(p, 0, memory_size);
  ofm_tensor->reset_data_ptr(p);
}

Z
zhangyang 已提交
121
void format_fp32_ofm(framework::Tensor *ofm_tensor, int aligned_channel) {
122 123 124
  auto dims = ofm_tensor->dims();
  size_t memory_size = 0;
  if (dims.size() == 4) {
Z
zhangyang 已提交
125 126
    auto height = dims[2], width = dims[3];
    memory_size = height * width * aligned_channel * sizeof(float);
127
  } else if (dims.size() == 2) {
Z
zhangyang 已提交
128
    memory_size = aligned_channel * sizeof(float);
129 130 131 132 133 134
  } else {
    DLOG << "Wrong ofm dimension";
  }
  auto p = fpga_malloc(memory_size);
  memset(p, 0, memory_size);
  ofm_tensor->reset_data_ptr(p);
Z
zhangyang 已提交
135 136
}

Z
zhangyang 已提交
137 138
float filter_find_max(framework::Tensor *filter_tensor) {
  auto filter_ptr = filter_tensor->data<float>();
Z
zhangyang 已提交
139
  return filter::find_max(filter_ptr, (int)filter_tensor->numel());  // NOLINT
Z
zhangyang 已提交
140
}
Z
zhangyang 已提交
141

Z
zhangyang 已提交
142 143
int get_aligned_channel_num(int channel_num) {
  return filter::calc_aligned_channel(channel_num);
Z
zhangyang 已提交
144 145
}

Z
zhangyang 已提交
146
int get_aligned_filter_num(framework::Tensor *filter_tensor) {
Z
zhangyang 已提交
147
  auto dims = filter_tensor->dims();
Z
zhangyang 已提交
148
  return filter::calc_aligned_num((int)dims[0], (int)dims[1]);  // NOLINT
Z
zhangyang 已提交
149 150
}

Z
zhangyang 已提交
151 152 153
int get_conv_output_channel(framework::Tensor *filter_tensor) {
  int aligned_filter_num = get_aligned_filter_num(filter_tensor);
  return get_aligned_channel_num(aligned_filter_num);
Z
zhangyang 已提交
154
}
Z
zhangyang 已提交
155 156
void format_filter(framework::Tensor *filter_tensor, float max_value,
                   int group_num) {
157 158
  filter_tensor->scale[0] = float(max_value / 127.0);  // NOLINT
  filter_tensor->scale[1] = float(127.0 / max_value);  // NOLINT
Z
zhangyang 已提交
159
  auto dims = filter_tensor->dims();
Z
zhangyang 已提交
160
  auto num = dims[0], channel = dims[1], height = dims[2], width = dims[3];
161
  auto data_ptr = filter_tensor->data<float>();
Z
zhangyang 已提交
162
  size_t memory_size = num * channel * height * width * sizeof(float);
163
  auto new_data = (float *)fpga_malloc(memory_size);  // NOLINT
Z
zhangyang 已提交
164
  memcpy(new_data, data_ptr, memory_size);
Z
zhangyang 已提交
165 166 167
  filter::format_filter(&new_data, (int)num, (int)channel,  // NOLINT
                        (int)height,                        // NOLINT
                        (int)width, group_num, max_value);  // NOLINT
Z
zhangyang 已提交
168 169 170
  filter_tensor->reset_data_ptr(new_data);
}

Z
zhangyang 已提交
171 172 173 174 175 176 177 178
void format_fc_filter(framework::Tensor *filter_tensor, float max_value) {
  filter_tensor->scale[0] = float(max_value / 127.0);  // NOLINT
  filter_tensor->scale[1] = float(127.0 / max_value);  // NOLINT
  auto dims = filter_tensor->dims();
  auto num = dims[0], channel = dims[1], height = dims[2], width = dims[3];
  auto data_ptr = filter_tensor->data<float>();
  size_t memory_size = num * channel * height * width * sizeof(float);
  auto new_data = (float *)fpga_malloc(memory_size);  // NOLINT
Z
zhangyang 已提交
179
  memcpy(new_data, data_ptr, memory_size);
Z
zhangyang 已提交
180 181 182
  filter::format_fc_filter(&new_data, (int)num, (int)channel,  // NOLINT
                           (int)height,                        // NOLINT
                           (int)width, 1, max_value);          // NOLINT
Z
zhangyang 已提交
183 184 185
  filter_tensor->reset_data_ptr(new_data);
}

Z
zhangyang 已提交
186 187 188 189 190 191
void format_bias_scale_array(float **bias_scale_array, int filter_num,
                             int filter_channel) {
  int num_after_alignment =
      filter::calc_aligned_num(filter_channel, filter_channel);
  bias_scale::format_bias_scale_array(bias_scale_array, filter_num,
                                      num_after_alignment);
Z
zhangyang 已提交
192 193
}

Z
zhangyang 已提交
194
void format_concat_output(framework::Tensor *out, int height, int width,
Z
zhangyang 已提交
195 196 197
                          uint32_t out_channel) {
  auto data_ptr = fpga_malloc(out_channel * height * width * sizeof(half));
  auto ddim = framework::make_ddim({1, out_channel, height, width});
Z
zhangyang 已提交
198 199 200 201
  out->Resize(ddim);
  out->reset_data_ptr(data_ptr);
}

Z
zhangyang 已提交
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
int format_conv_data(framework::Tensor *filter_tensor,
                     framework::Tensor *ofm_tensor, float *bs_ptr, int group) {
  float max_value = fpga::filter_find_max(filter_tensor);
  fpga::format_filter(filter_tensor, max_value, group);
  int aligned_num = get_aligned_filter_num(filter_tensor);
  fpga::format_bias_scale_array(&bs_ptr,
                                (int)filter_tensor->dims()[0],  // NOLINT
                                aligned_num);
  int aligned_channel = fpga::get_conv_output_channel(filter_tensor);
  fpga::format_fp16_ofm(ofm_tensor, aligned_channel);
  DLOG << aligned_channel;
  return aligned_channel;
}

int format_fc_data(framework::Tensor *filter_tensor,
                   framework::Tensor *ofm_tensor, float *bs_ptr) {
  float max_value = fpga::filter_find_max(filter_tensor);
  fpga::format_fc_filter(filter_tensor, max_value);
  int aligned_num = get_aligned_filter_num(filter_tensor);
  fpga::format_bias_scale_array(&bs_ptr,
                                (int)filter_tensor->dims()[0],  // NOLINT
                                aligned_num);
  int aligned_channel = fpga::get_conv_output_channel(filter_tensor);
  fpga::format_fp16_ofm(ofm_tensor, aligned_channel);
  DLOG << aligned_channel;
  return aligned_channel;
}

Z
zhangyang 已提交
230 231 232 233
void fill_split_arg(struct SplitConvArgs *arg, framework::Tensor *input,
                    framework::Tensor *out, framework::Tensor *filter,
                    bool relu_enabled, int group_num, int stride_h,
                    int stride_w, int padding_h, int padding_w, float *bs_ptr) {
234 235
  auto input_ptr = input->data<float>();
  auto filter_ptr = filter->data<float>();
236
  auto out_ptr = out->data<float>();
237 238

  arg->group_num = (uint32_t)group_num;
Z
zhangyang 已提交
239
  arg->split_num = 1;
240 241 242
  arg->filter_num = (uint32_t)filter->dims()[0];
  arg->output.address = out_ptr;
  arg->output.scale_address = out->scale;
243 244
  arg->conv_args =
      (ConvArgs *)fpga_malloc(arg->split_num * sizeof(ConvArgs));  // NOLINT
245 246 247 248

  arg->concat_arg.image_num = arg->split_num;
  arg->concat_arg.image_out = out_ptr;
  arg->concat_arg.scale_out = out->scale;
249 250
  arg->concat_arg.height = (uint32_t)out->dims()[2];
  arg->concat_arg.width = (uint32_t)out->dims()[3];
251 252

  int n = arg->split_num;
253 254 255 256
  arg->concat_arg.images_in =
      (half **)fpga_malloc(n * sizeof(int *));  // NOLINT
  arg->concat_arg.scales_in =
      (float **)fpga_malloc(n * sizeof(float *));  // NOLINT
257
  arg->concat_arg.channel_num =
258
      (uint32_t *)fpga_malloc(n * sizeof(uint32_t));  // NOLINT
259 260 261

  for (int i = 0; i < n; i++) {
    arg->conv_args[i].relu_enabled = relu_enabled;
Z
zhangyang 已提交
262 263 264 265
    arg->conv_args[i].sb_address = bs_ptr;
    arg->conv_args[i].filter_address = (int8_t *)filter_ptr;  // NOLINT
    arg->conv_args[i].filter_scale_address = filter->scale;
    arg->conv_args[i].filter_num = arg->filter_num;
266
    arg->conv_args[i].group_num = (uint32_t)group_num;
Z
zhangyang 已提交
267

268 269 270 271
    arg->conv_args[i].kernel.stride_h = (uint32_t)stride_h;
    arg->conv_args[i].kernel.stride_w = (uint32_t)stride_w;
    arg->conv_args[i].kernel.height = (uint32_t)filter->dims()[2];
    arg->conv_args[i].kernel.width = (uint32_t)filter->dims()[3];
Z
zhangyang 已提交
272

273
    arg->conv_args[i].image.address = input_ptr;
Z
zhangyang 已提交
274
    arg->conv_args[i].image.scale_address = input->scale;
275 276 277 278 279
    arg->conv_args[i].image.channels = (uint32_t)input->dims()[1];
    arg->conv_args[i].image.height = (uint32_t)input->dims()[2];
    arg->conv_args[i].image.width = (uint32_t)input->dims()[3];
    arg->conv_args[i].image.pad_height = (uint32_t)padding_h;
    arg->conv_args[i].image.pad_width = (uint32_t)padding_w;
Z
zhangyang 已提交
280 281 282

    arg->conv_args[i].output.address = out_ptr;
    arg->conv_args[i].output.scale_address = out->scale;
283 284 285
  }
}

H
hanbuhe 已提交
286
}  // namespace fpga
Z
zhangyang 已提交
287
}  // namespace paddle_mobile