elementwise_add_image_compute.cc 7.1 KB
Newer Older
Y
Yan Chunwei 已提交
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/kernels/opencl/elementwise_add_image_compute.h"
Y
Yan Chunwei 已提交
16
#include <memory>
17
#include "lite/backends/opencl/cl_include.h"
Y
Yan Chunwei 已提交
18 19 20 21 22 23 24 25
#include "lite/core/op_registry.h"
#include "lite/utils/replace_stl/stream.h"

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

26
void ElementwiseAddImageCompute::PrepareForRun() {}
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
void ElementwiseAddImageCompute::ReInitWhenNeeded() {
  ele_param_ = param_.get_mutable<param_t>();
  auto x_dims = ele_param_->X->dims();
  if ((!first_epoch_for_reinit_ && x_dims != last_x_dims_) ||
      first_epoch_for_reinit_) {
    last_x_dims_ = x_dims;
    first_epoch_for_reinit_ = false;

    // choose kernel
    auto* x = ele_param_->X;
    auto* y = ele_param_->Y;
    auto* out = ele_param_->Out;
    auto axis = ele_param_->axis;

    if (y->dims().size() == 4) {
      kernel_func_name_ = "elementwise_add";  // y: ImageDefault
    } else if (y->dims().size() == 1) {
      if (axis == x->dims().size() - 1) {
        kernel_func_name_ = "width_add";  // y: ImageDefault
      } else if (axis == x->dims().size() - 3) {
        kernel_func_name_ = "channel_add";  // y: ImageFolder
      } else {
        LOG(FATAL) << "ElementwiseAddImage doesn't support axis:" << axis
                   << ", x->dims().size():" << x->dims().size()
                   << ", y->dims.size():" << y->dims().size();
      }
54 55 56 57 58
    } else {
      LOG(FATAL) << "ElementwiseAddImage doesn't support axis:" << axis
                 << ", x->dims().size():" << x->dims().size()
                 << ", y->dims.size():" << y->dims().size();
    }
59 60 61
    VLOG(1) << "kernel_func_name_:" << kernel_func_name_;

    auto& context = ctx_->As<OpenCLContext>();
62 63 64 65
    context.cl_context()->AddKernel(kernel_func_name_,
                                    "image/elementwise_add_kernel.cl",
                                    build_options_,
                                    time_stamp_);
66 67

    STL::stringstream kernel_key;
68
    kernel_key << kernel_func_name_ << build_options_ << time_stamp_;
69 70 71 72 73 74 75 76 77 78 79
    kernel_ = context.cl_context()->GetKernel(kernel_key.str());

    // compute image shape
    paddle::lite::CLImageConverterDefault default_convertor;
    x_img_shape_ = default_convertor.InitImageDimInfoWith(x->dims());  // w, h
    y_img_shape_ = default_convertor.InitImageDimInfoWith(y->dims());
    out_img_shape_ =
        default_convertor.InitImageDimInfoWith(out->dims());  // w, h

    // compute global work size
    GetGlobalWorkSize();
80
  }
81
}
82

83 84 85 86 87 88 89
void ElementwiseAddImageCompute::GetGlobalWorkSize() {
  global_work_size_ = cl::NDRange{static_cast<cl::size_type>(x_img_shape_[0]),
                                  static_cast<cl::size_type>(x_img_shape_[1])};
#ifndef LITE_SHUTDOWN_LOG
  VLOG(4) << "global_work_size:[2D]:" << x_img_shape_[0] << " "
          << x_img_shape_[1];
#endif
90 91 92 93 94 95 96
}

void ElementwiseAddImageCompute::Run() {
  auto* x = ele_param_->X;
  auto* y = ele_param_->Y;
  auto* out = ele_param_->Out;
  auto axis = ele_param_->axis;
97 98 99 100 101 102 103
  auto x_dims = x->dims();
  auto y_dims = y->dims();

  auto* x_img = x->data<half_t, cl::Image2D>();
  auto* y_img = y->data<half_t, cl::Image2D>();
  auto* out_img = out->mutable_data<half_t, cl::Image2D>(out_img_shape_[0],
                                                         out_img_shape_[1]);
104

105
#ifndef LITE_SHUTDOWN_LOG
106 107 108 109 110 111 112 113
  VLOG(4) << "x->target():" << TargetToStr(x->target());
  VLOG(4) << "y->target():" << TargetToStr(y->target());
  VLOG(4) << "out->target():" << TargetToStr(out->target());
  VLOG(4) << "x->dims():" << x->dims();
  VLOG(4) << "y->dims():" << y->dims();
  VLOG(4) << "out->dims():" << out->dims();
  VLOG(4) << "axis:" << axis;

114 115 116 117
  VLOG(4) << "x_img_shape_[w,h]:" << x_img_shape_[0] << " " << x_img_shape_[1];
  VLOG(4) << "y_img_shape_[w,h]:" << y_img_shape_[0] << " " << y_img_shape_[1];
  VLOG(4) << "out_img_shape_[w,h]:" << out_img_shape_[0] << " "
          << out_img_shape_[1];
118
#endif
119

120 121
  cl_int status;
  auto kernel = kernel_;
122
  if (y_dims.size() == 4) {
123
    status = kernel.setArg(0, *x_img);
124
    CL_CHECK_FATAL(status);
125
    status = kernel.setArg(1, *y_img);
126
    CL_CHECK_FATAL(status);
127
    status = kernel.setArg(2, *out_img);
128 129
    CL_CHECK_FATAL(status);
  } else if (y_dims.size() == 1) {
130 131
    if (axis == x_dims.size() - 1 || axis == x_dims.size() - 3) {
      const int tensor_w = x_dims[x_dims.size() - 1];
132
#ifndef LITE_SHUTDOWN_LOG
133
      VLOG(4) << "tensor_w:" << tensor_w;
134
#endif
135
      status = kernel.setArg(0, *x_img);
136
      CL_CHECK_FATAL(status);
137
      status = kernel.setArg(1, *y_img);
138
      CL_CHECK_FATAL(status);
139
      status = kernel.setArg(2, *out_img);
140
      CL_CHECK_FATAL(status);
141
      status = kernel.setArg(3, tensor_w);
142 143 144
      CL_CHECK_FATAL(status);
    } else {
      LOG(FATAL) << "ElementwiseAddImage doesn't support axis:" << axis
145 146
                 << ", x->dims().size():" << x_dims.size()
                 << ", y->dims.size():" << y_dims.size();
147 148 149
    }
  } else {
    LOG(FATAL) << "ElementwiseAddImage doesn't support axis:" << axis
150 151
               << ", x->dims().size():" << x_dims.size()
               << ", y->dims.size():" << y_dims.size();
152 153
  }

154 155
  auto& context = ctx_->As<OpenCLContext>();
  CHECK(context.cl_context() != nullptr);
X
xiebaiyuan 已提交
156

157
  status = context.cl_context()->GetCommandQueue().enqueueNDRangeKernel(
158 159
      kernel,
      cl::NullRange,
160
      global_work_size_,
161 162
      cl::NullRange,
      nullptr,
X
xiebaiyuan 已提交
163
      nullptr);
164 165
  CL_CHECK_FATAL(status);
}
Y
Yan Chunwei 已提交
166 167 168 169 170 171 172

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

namespace ocl = paddle::lite::kernels::opencl;
173

174
// TODO(ysh329): May need fix.
175 176 177 178 179 180 181
// "Y" may from constant value like conv bias (kARM, need do cl_image_converter
// on CPU);
//     may from anther branch like "X" (kOpenCL, nothing to do).
// Consider 2 situations have different actions when pass running(pick kernel),
//     set target of "Y" as kOpenCL temporarily.
REGISTER_LITE_KERNEL(elementwise_add,
                     kOpenCL,
182
                     kFP16,
183 184 185 186 187
                     kImageDefault,
                     ocl::ElementwiseAddImageCompute,
                     def)
    .BindInput("X",
               {LiteType::GetTensorTy(TARGET(kOpenCL),
188
                                      PRECISION(kFP16),
189 190 191
                                      DATALAYOUT(kImageDefault))})
    .BindInput("Y",
               {LiteType::GetTensorTy(TARGET(kOpenCL),
192
                                      PRECISION(kFP16),
193 194 195
                                      DATALAYOUT(kImageDefault))})
    .BindOutput("Out",
                {LiteType::GetTensorTy(TARGET(kOpenCL),
196
                                       PRECISION(kFP16),
197
                                       DATALAYOUT(kImageDefault))})
Y
Yan Chunwei 已提交
198
    .Finalize();