psroi_pool_kernel.cpp 11.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* 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. */

#ifdef PSROI_POOL_OP

#include <cmath>
#include <vector>
#include "operators/kernel/detection_kernel.h"

qnqinan's avatar
qnqinan 已提交
21 22
#include "fpga/V2/api.h"
#include "fpga/V2/image.h"
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 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
namespace paddle_mobile {
namespace operators {

template <>
bool PSRoiPoolKernel<FPGA, float>::Init(PSRoiPoolParam<FPGA>* param) {
  auto dims = param->input_x_->dims();
  PADDLE_MOBILE_ENFORCE(dims[1] * dims[3] % IMAGE_ALIGNMENT == 0,
                        "data not aligned");

  param->float_input = std::make_shared<Tensor>();
  param->float_input->mutable_data<float>(param->input_x_->dims());
  // param->float_output = std::make_shared<Tensor>();

  auto input = param->input_x_;
  fpga::BypassArgs args = {fpga::DATA_TYPE_FP16};
  args.input_layout_type = fpga::LAYOUT_HWC;
  args.output_layout_type = fpga::LAYOUT_HWC;
  args.input_data_type = fpga::DATA_TYPE_FP16;
  args.output_data_type = fpga::DATA_TYPE_FP32;
  args.image.address = input->data<half>();
  args.image.height = (uint32_t)input->dims()[2];
  args.image.width = (uint32_t)input->dims()[3];
  args.image.channels = (uint32_t)input->dims()[1];
  args.output.address = param->float_input->mutable_data<float>();
  args.output.scale_address = param->float_input->scale;
  param->input_arg = args;

  auto* rois = param->input_rois_;
  int rois_num = rois->dims()[0];
  framework::DDim dims_out_new = framework::make_ddim(
      {rois_num, param->output_->dims()[1], param->output_->dims()[2],
       param->output_->dims()[3]});
  param->output_->Resize(dims_out_new);
  // fpga::format_fp16_ofm(param->output_);

  param->output_->mutable_data<float>(dims_out_new);
  //  auto output = param->float_output.get();
  // param->output_ = output;
  /* args.input_data_type = fpga::DATA_TYPE_FP32;
   args.output_data_type = fpga::DATA_TYPE_FP16;
   args.image.address = output->data<float>();
   args.image.height = (uint32_t)output->dims()[2];
   args.image.width = (uint32_t)output->dims()[3];
   args.image.channels = (uint32_t)output->dims()[1]  ;
   args.output.address = param->output_->mutable_data<half>();
   args.output.scale_address = param->output_->scale;
   param->output_arg = args;*/

  return true;
}

/*
    template <typename Dtype>
    void PSROIPoolingForward(
    const Dtype* bottom_data,
    const int height, const int width, const int input_channel,
    Dtype* top_data,
    const int pooled_height, const int pooled_width, const int output_channel,
    const Dtype* bottom_rois,
    const Dtype Bin_size_h, const Dtype Bin_size_w, const Dtype roi_start_h,
   const Dtype roi_start_w, const int pw, const int ph, const int roi_batch_ind)
    {

      int hstart = floor(static_cast<Dtype>(ph) * Bin_size_h + roi_start_h);
      int wstart = floor(static_cast<Dtype>(pw)* Bin_size_w + roi_start_w);
      int hend = ceil(static_cast<Dtype>(ph + 1) * Bin_size_h + roi_start_h);
      int wend = ceil(static_cast<Dtype>(pw + 1) * Bin_size_w + roi_start_w);

      hstart = std::min(std::max(hstart, 0), height);
      hend = std::min(std::max(hend, 0), height);
      wstart = std::min(std::max(wstart, 0), width);
      wend = std::min(std::max(wend, 0), width);
      bool is_empty = (hend <= hstart) || (wend <= wstart);

      float32x4_t sum_pixels_low_c= vdupq_n_f32(0);
      float32x4_t sum_pixels_high_c= vdupq_n_f32(0);

      if(!is_empty){
          Dtype bin_area = (hend - hstart) * (wend - wstart);
          float rev_bin_area = 1 / bin_area;
          float32x4_t q_bin_area = vdupq_n_f32(rev_bin_area);
   //static_cast<float>(bin_area) float pixels_c[output_channel];

          for (int h = hstart; h < hend; ++h) {
            for (int w = wstart; w < wend; ++w) {
                int pixel_offset = (h * width + w) * input_channel;
                for(int output_c = 0; output_c < output_channel; output_c++){
                    int input_channel_offset = output_c * pooled_height *
   pooled_width; int input_bias = pixel_offset + input_channel_offset + ph *
   pooled_width + pw; pixels_c[output_c] = bottom_data[input_bias];
                }
                float32x4_t pixel_low_c = vld1q_f32(pixels_c);
                float32x4_t pixel_high_c = vld1q_f32(pixels_c + 4);
                sum_pixels_low_c = vaddq_f32(sum_pixels_low_c, pixel_low_c);
                sum_pixels_high_c = vaddq_f32(sum_pixels_high_c, pixel_high_c);
            }
          }
          sum_pixels_low_c = vmulq_f32(sum_pixels_low_c, q_bin_area);
          sum_pixels_high_c = vmulq_f32(sum_pixels_high_c, q_bin_area);
        }

      int output_index_base = (ph * pooled_width + pw) * output_channel;
      top_data += output_index_base;
      vst1q_f32(top_data, sum_pixels_low_c);
      top_data += 4;
      vst1q_f32(top_data, sum_pixels_high_c);
    }*/

template <typename Dtype>
void PSROIPoolingForward(const Dtype* bottom_data, const int height,
                         const int width, const int input_channel,
                         Dtype* top_data, const int pooled_height,
                         const int pooled_width, const int output_channel,
                         const Dtype* bottom_rois, const Dtype Bin_size_h,
                         const Dtype Bin_size_w, const Dtype roi_start_h,
                         const Dtype roi_start_w, const int pw, const int ph,
                         const int roi_batch_ind) {
  int hstart = floor(static_cast<Dtype>(ph) * Bin_size_h + roi_start_h);
  int wstart = floor(static_cast<Dtype>(pw) * Bin_size_w + roi_start_w);
  int hend = ceil(static_cast<Dtype>(ph + 1) * Bin_size_h + roi_start_h);
  int wend = ceil(static_cast<Dtype>(pw + 1) * Bin_size_w + roi_start_w);

  // Add roi offsets and clip to input boundaries
  hstart = std::min(std::max(hstart, 0), height);
  hend = std::min(std::max(hend, 0), height);
  wstart = std::min(std::max(wstart, 0), width);
  wend = std::min(std::max(wend, 0), width);
  bool is_empty = (hend <= hstart) || (wend <= wstart);

  float sum_pixels_c[output_channel] = {0};
  float pixels_c[output_channel] = {0};
  if (!is_empty) {
    Dtype bin_area = (hend - hstart) * (wend - wstart);
    float rec_bin_area = 1 / bin_area;

    for (int h = hstart; h < hend; ++h) {
      for (int w = wstart; w < wend; ++w) {
        int pixel_offset = (h * width + w) * input_channel;
        for (int output_c = 0; output_c < output_channel; output_c++) {
          int input_channel_offset = output_c * pooled_height * pooled_width;
          int input_bias =
              pixel_offset + input_channel_offset + ph * pooled_width + pw;
          pixels_c[output_c] = bottom_data[input_bias];
        }

        for (int output_c = 0; output_c < output_channel; output_c++) {
          sum_pixels_c[output_c] += pixels_c[output_c];
        }
      }
    }
    for (int output_c = 0; output_c < output_channel; output_c++) {
      sum_pixels_c[output_c] *= rec_bin_area;
    }
  }

  int output_index_base = (ph * pooled_width + pw) * output_channel;
  top_data += output_index_base;
  memcpy(top_data, sum_pixels_c, output_channel * 4);
}

template <>
void PSRoiPoolKernel<FPGA, float>::Compute(const PSRoiPoolParam<FPGA>& param) {
  auto input_tensor = param.float_input.get();
  fpga::PerformBypass(param.input_arg);
  fpga::fpga_invalidate(input_tensor->data<float>(),
                        input_tensor->numel() * sizeof(float));

  auto* in = input_tensor;
  auto* rois = param.input_rois_;
  auto* out = param.output_;  // param.float_output.get();

  auto pooled_height = param.pooled_height_;
  auto pooled_width = param.pooled_width_;
  auto spatial_scale = param.spatial_scale_;
  auto output_channels = param.output_channels_;

  auto in_dims = in->dims();
  int batch_size = in_dims[0];
  int input_channels = in_dims[1];
  int height = in_dims[2];
  int width = in_dims[3];
  int rois_num = rois->dims()[0];

  auto data_nhwc = in->mutable_data<float>();

  //  fpga::image::convert_to_chw(&data_nhwc, input_channels, height, width);
  framework::DDim dims_out_new = framework::make_ddim(
      {rois_num, (param.output_)->dims()[1], (((param.output_)->dims()[2])),
       (param.output_)->dims()[3]});

  (param.output_)->Resize(dims_out_new);

  const float* input_data = data_nhwc;  // in->data<float>();
  framework::Tensor rois_batch_id_list;
  rois_batch_id_list.Resize({rois_num});
  auto rois_batch_id_data = rois_batch_id_list.mutable_data<int>();

  PADDLE_MOBILE_ENFORCE(rois->NumLevels() > 0, "ROIS should not be empty");

  auto rois_lod = rois->lod().back();
  int rois_batch_size = rois_lod.size() - 1;
  PADDLE_MOBILE_ENFORCE(
      rois_batch_size == batch_size,
      "the rois_batch_size and input(X) batch_size should be the same.");
  int rois_num_with_lod = rois_lod[rois_batch_size];
  PADDLE_MOBILE_ENFORCE(rois_num_with_lod == rois_num,
                        "the rois_num from input and lod must be the same");

  PADDLE_MOBILE_ENFORCE(
      input_channels == output_channels * pooled_height * pooled_width,
      "the channels of input X should equal the product of "
      "output_channels x pooled_height x pooled_width");

  // calculate batch id index for each roi according to LoD
  for (int n = 0; n < rois_batch_size; ++n) {
    for (size_t i = rois_lod[n]; i < rois_lod[n + 1]; ++i) {
      rois_batch_id_data[i] = n;
    }
  }
  auto output_data = out->mutable_data<float>();
  auto input_rois = rois->data<float>();

  for (int n = 0; n < rois_num; ++n) {
    auto offset_input_rois = input_rois + n * 4;
    auto offset_output_data =
        output_data + pooled_height * pooled_width * output_channels * n;

    auto roi_start_w =
        static_cast<float>(round(offset_input_rois[0])) * spatial_scale;
    auto roi_start_h =
        static_cast<float>(round(offset_input_rois[1])) * spatial_scale;
    auto roi_end_w =
        static_cast<float>(round(offset_input_rois[2]) + 1.) * spatial_scale;
    auto roi_end_h =
        static_cast<float>(round(offset_input_rois[3]) + 1.) * spatial_scale;

    // Force too small rois to be 1 x 1
    auto roi_height = std::max(roi_end_h - roi_start_h, 0.1f);  // avoid 0
    auto roi_width = std::max(roi_end_w - roi_start_w, 0.1f);

    // Compute bin size w and h at input feature map
    auto bin_size_h = roi_height / static_cast<float>(pooled_height);
    auto bin_size_w = roi_width / static_cast<float>(pooled_width);

    int roi_batch_ind = rois_batch_id_data[n];

    for (int ph = 0; ph < pooled_height; ph++) {
      for (int pw = 0; pw < pooled_width; pw++) {
        PSROIPoolingForward<float>(input_data, height, width, input_channels,
                                   offset_output_data, pooled_height,
                                   pooled_width, output_channels, input_rois,
                                   bin_size_h, bin_size_w, roi_start_h,
                                   roi_start_w, pw, ph, roi_batch_ind);
      }
    }
  }
}

}  // namespace operators
}  // namespace paddle_mobile

#endif  // PSROI_POOL_OP