concat_image_compute.cc 9.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

15
#include "lite/backends/opencl/cl_half.h"
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
#include "lite/backends/opencl/cl_include.h"
#include "lite/core/kernel.h"
#include "lite/core/op_registry.h"
#include "lite/kernels/opencl/image_helper.h"
#include "lite/operators/op_params.h"
#include "lite/utils/replace_stl/stream.h"

namespace paddle {
namespace lite {
namespace kernels {
namespace opencl {

class ConcatComputeImage : public KernelLite<TARGET(kOpenCL),
                                             PRECISION(kFP16),
                                             DATALAYOUT(kImageDefault)> {
 public:
  using param_t = operators::ConcatParam;

  void PrepareForRun() override {
    auto& context = ctx_->As<OpenCLContext>();
    concat_param_ = param_.get_mutable<param_t>();
    if (concat_param_->x.size() == 2) {
      kernel_func_name_ = "concat2";
    } else {
      kernel_func_name_ = "concat_mul";
    }
42
    VLOG(1) << "kernel_func_name_:" << kernel_func_name_;
43 44 45 46 47 48 49 50 51 52 53 54 55 56
    context.cl_context()->AddKernel(
        kernel_func_name_, "image/concat_kernel.cl", build_options_);

    auto axis = concat_param_->axis;
    auto inputs = concat_param_->x;
    auto out_dims = concat_param_->output->dims();
    auto* axis_tensor = concat_param_->axis_tensor;
    if (axis_tensor != nullptr) {
      // auto* axis_tensor_data = axis_tensor->data<int>(TARGET(kARM));
      // axis = axis_tensor_data[0];
    }
    auto in_dims = inputs[0]->dims();
    axis_size_ = out_dims[axis];
    axis_ = axis;
57 58 59
    if (out_dims.size() < 4) {
      if (out_dims.size() - axis == 1) {
        // width
60 61
        width_ = out_dims[1];  // c
        flag_ = 3;
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
      } else {
        // height
        width_ = out_dims[0];  // n
        flag_ = 2;
      }
    } else {
      switch (axis_) {
        case 0:
          width_ = out_dims[2];  // h
          flag_ = 0;
          break;
        case 1:                  // channel
          width_ = out_dims[3];  // w
          flag_ = 1;
          break;
        case 2:                  // height
          width_ = out_dims[0];  // n
          flag_ = 2;
          break;
        case 3:
        case -1:                 // width
          width_ = out_dims[1];  // c
          flag_ = 3;
          break;
        default:
          printf("this axis: %d does not support \n", axis_);
      }
89
    }
90

91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
    for (int i = 1; i < inputs.size(); i++) {
      auto dims = inputs[i]->dims();
      // auto flag = CHECK_EQ_OR_FALSE(in_dims.size(), dims.size());
      if (in_dims.size() != dims.size()) {
        printf("input shape must be same \n");
        return;
      }
      for (int i = 0; i < dims.size(); i++) {
        if (i != axis) {
          if (in_dims[i] != dims[i]) {
            printf("input shape must be same \n");
            return;
          }
        }
      }
    }
  }

  void Run() override {
    auto& param = *param_.get_mutable<param_t>();
    const auto& x_dims = param.output->dims();
    auto image_shape = InitImageDimInfoWith(x_dims);
113
    auto* out_buf = param.output->mutable_data<half_t, cl::Image2D>(
114 115 116 117 118 119 120 121 122 123
        image_shape["width"], image_shape["height"]);
    const auto& y_dims = param.output->dims();  // useless: check dim only

    auto& context = ctx_->As<OpenCLContext>();
    CHECK(context.cl_context() != nullptr);
    STL::stringstream kernel_key;
    kernel_key << kernel_func_name_ << build_options_;

    auto inputs = param.x;
    int arg_idx = 0;
124 125
    int width = inputs[0]->dims()[inputs[0]->dims().size() - 1];

126
    VLOG(4) << "concat 输入尺寸:  ";
127
    for (size_t i = 0; i < inputs.size(); i++) {
128 129 130 131 132
      VLOG(4) << "inputs [" << i << "]"
              << "[" << inputs[i]->dims().size() << "D]:"
              << "   dims:" << inputs[i]->dims()[0] << " "
              << inputs[i]->dims()[1] << " " << inputs[i]->dims()[2] << " "
              << inputs[i]->dims()[3];
133
    }
134 135 136 137 138 139 140 141

    VLOG(4) << "concat 输出尺寸:  ";
    VLOG(4) << " out  dims:  "
            << "[" << x_dims.size() << "D]:" << x_dims[0] << " " << x_dims[1]
            << " " << x_dims[2] << " " << x_dims[3];
    VLOG(4) << "axis_: " << axis_;
    VLOG(4) << "flag_: " << flag_;

142 143 144 145 146
    auto global_work_size =
        cl::NDRange{static_cast<cl::size_type>(x_dims[x_dims.size() - 1]),
                    static_cast<cl::size_type>(image_shape["width"] /
                                               x_dims[x_dims.size() - 1]),
                    static_cast<cl::size_type>(image_shape["height"])};
147

148 149 150 151
    VLOG(4) << TargetToStr(param.output->target());
    VLOG(4) << "image_shape(w,h):" << image_shape["width"] << " "
            << image_shape["height"];
    VLOG(4) << "x_dims[" << x_dims.size() << "D]:" << x_dims[0] << " "
152 153
            << x_dims[1] << " " << x_dims[2] << " " << x_dims[3]
            << "x_dims[x_dims.size() - 1]" << x_dims[x_dims.size() - 1];
154 155
    VLOG(4) << "y_dims[" << y_dims.size() << "D]:" << y_dims[0] << " "
            << y_dims[1] << " " << y_dims[2] << " " << y_dims[3];
156
    VLOG(4) << "width_: " << width_ << ", flag_: " << flag_;
157 158 159
    VLOG(4) << "global_work_size: " << x_dims[x_dims.size() - 1] << "  "
            << (image_shape["width"] / x_dims[x_dims.size() - 1]) << "  "
            << (image_shape["height"]);
160

161
    auto kernel = context.cl_context()->GetKernel(kernel_key.str());
162
    int out_w = x_dims[x_dims.size() - 1];
163
    int out_c = x_dims[1];
164
    if (inputs.size() == 2) {
165 166
      auto* x_buf0 = inputs[0]->data<half_t, cl::Image2D>();
      auto* x_buf1 = inputs[1]->data<half_t, cl::Image2D>();
167 168 169 170 171 172
      cl_int status = kernel.setArg(arg_idx, *x_buf0);
      CL_CHECK_FATAL(status);
      status = kernel.setArg(++arg_idx, *x_buf1);
      CL_CHECK_FATAL(status);
      status = kernel.setArg(++arg_idx, *out_buf);
      CL_CHECK_FATAL(status);
173 174
      status = kernel.setArg(++arg_idx, flag_);
      CL_CHECK_FATAL(status);
175 176 177
      status =
          kernel.setArg(++arg_idx, static_cast<int>(inputs[0]->dims()[axis_]));
      CL_CHECK_FATAL(status);
178
      status = kernel.setArg(++arg_idx, out_c);
179
      CL_CHECK_FATAL(status);
180 181 182
      status = kernel.setArg(++arg_idx, out_w);
      CL_CHECK_FATAL(status);
      status = kernel.setArg(++arg_idx, width_);
183 184 185 186 187 188 189 190 191
      CL_CHECK_FATAL(status);
      status = context.cl_context()->GetCommandQueue().enqueueNDRangeKernel(
          kernel,
          cl::NullRange,
          global_work_size,
          cl::NullRange,
          nullptr,
          event_.get());
      CL_CHECK_FATAL(status);
192
      context.cl_wait_list()->emplace(out_buf, event_);
193 194 195 196
    } else {
      auto start = 0;
      for (int i = 0; i < inputs.size(); i++) {
        arg_idx = 0;
197 198
        auto in_dims = inputs[i]->dims();
        image_shape = InitImageDimInfoWith(in_dims);
199
        auto* x_buf = inputs[i]->data<half_t, cl::Image2D>();
200
        int in_w = in_dims[in_dims.size() - 1];
201 202
        VLOG(4) << "image_shape(w,h):" << image_shape["width"] << " "
                << image_shape["height"];
203 204 205 206 207
        global_work_size =
            cl::NDRange{static_cast<cl::size_type>(in_dims[in_dims.size() - 1]),
                        static_cast<cl::size_type>(image_shape["width"] /
                                                   in_dims[in_dims.size() - 1]),
                        static_cast<cl::size_type>(image_shape["height"])};
208 209 210 211
        cl_int status = kernel.setArg(arg_idx, *x_buf);
        CL_CHECK_FATAL(status);
        status = kernel.setArg(++arg_idx, *out_buf);
        CL_CHECK_FATAL(status);
212
        status = kernel.setArg(++arg_idx, flag_);
213 214 215
        CL_CHECK_FATAL(status);
        status = kernel.setArg(++arg_idx, start);
        CL_CHECK_FATAL(status);
216 217 218 219 220
        status = kernel.setArg(++arg_idx, out_c);
        CL_CHECK_FATAL(status);
        status = kernel.setArg(++arg_idx, out_w);
        CL_CHECK_FATAL(status);
        status = kernel.setArg(++arg_idx, in_w);
221
        CL_CHECK_FATAL(status);
222
        status = kernel.setArg(++arg_idx, width_);
223 224 225 226 227 228 229 230 231 232
        CL_CHECK_FATAL(status);
        CL_CHECK_FATAL(status);
        status = context.cl_context()->GetCommandQueue().enqueueNDRangeKernel(
            kernel,
            cl::NullRange,
            global_work_size,
            cl::NullRange,
            nullptr,
            event_.get());
        CL_CHECK_FATAL(status);
233
        context.cl_wait_list()->emplace(out_buf, event_);
234 235 236 237 238 239 240 241 242
        start += inputs[i]->dims()[axis_];
      }
    }
  }

  std::string doc() { return "Concat using cl::Image, kFP16"; }

  int axis_size_ = 1;
  int axis_ = 1;
243 244
  int flag_ = 1;
  int width_ = 1;
245 246
  param_t* concat_param_{nullptr};
  std::string kernel_func_name_{};
247
  std::string build_options_{" -DCL_DTYPE_half"};
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
  std::shared_ptr<cl::Event> event_{new cl::Event};
};

}  // namespace opencl
}  // namespace kernels
}  // namespace lite
}  // namespace paddle

typedef paddle::lite::kernels::opencl::ConcatComputeImage Concat_image;

REGISTER_LITE_KERNEL(
    concat, kOpenCL, kFP16, kImageDefault, Concat_image, ImageDefault)
    .BindInput("X",
               {LiteType::GetTensorTy(TARGET(kOpenCL),
                                      PRECISION(kFP16),
                                      DATALAYOUT(kImageDefault))})
    .BindInput("AxisTensor",
               {LiteType::GetTensorTy(TARGET(kOpenCL),
                                      PRECISION(kInt32),
                                      DATALAYOUT(kImageDefault))})
    .BindOutput("Out",
                {LiteType::GetTensorTy(TARGET(kOpenCL),
                                       PRECISION(kFP16),
                                       DATALAYOUT(kImageDefault))})
    .Finalize();