// 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. #include #include "lite/backends/opencl/cl_half.h" #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" #include "lite/utils/string.h" namespace paddle { namespace lite { namespace kernels { namespace opencl { class PoolComputeImage2D : public KernelLite { public: using param_t = operators::PoolParam; std::string doc() const override { return "Pool using cl::Image2D, kFP16"; } void PrepareForRun() override { const auto& param = *param_.get_mutable(); kernel_func_name_ += param.pooling_type; const bool global_pooling = param.global_pooling; if (global_pooling) { kernel_func_name_ += "_global"; } VLOG(1) << "kernel_func_name_:" << kernel_func_name_; auto& context = ctx_->As(); kernel_ = context.cl_context()->CreateKernel( kernel_func_name_, "image/pool_kernel.cl", build_options_, time_stamp_); } void Run() override { const auto& param = *param_.get_mutable(); const auto& in_dims = param.x->dims(); const auto& out_dims = param.output->dims(); const std::string pooling_type = param.pooling_type; const bool global_pooling = param.global_pooling; std::vector paddings = *param.paddings; std::vector strides = param.strides; std::vector ksize = param.ksize; #ifndef LITE_SHUTDOWN_LOG VLOG(4) << "global_pooling: " << global_pooling; VLOG(4) << "pooling_type: " << pooling_type; VLOG(4) << "paddings : " << paddings[0] << " " << paddings[1] << " " << paddings[2] << " " << paddings[3] << " "; #endif if (global_pooling) { for (size_t i = 0; i < ksize.size(); ++i) { paddings[2 * i] = 0; paddings[2 * i + 1] = 0; ksize[i] = static_cast(in_dims[i + 2]); } } #ifndef LITE_SHUTDOWN_LOG VLOG(4) << "in_dims : [" << in_dims.size() << "]" << in_dims[0] << " " << in_dims[1] << " " << in_dims[2] << " " << in_dims[3]; VLOG(4) << "out_dims : [" << out_dims.size() << "]" << out_dims[0] << " " << out_dims[1] << " " << out_dims[2] << " " << out_dims[3]; VLOG(4) << "paddings fixed : " << paddings[0] << " " << paddings[1] << " " << paddings[2] << " " << paddings[3] << " "; VLOG(4) << "strides : [" << strides.size() << "]" << strides[0] << " " << strides[1]; VLOG(4) << "ksize : [" << ksize.size() << "]" << ksize[0] << " " << ksize[1] << " " << ksize[2] << " " << ksize[3]; VLOG(4) << "paddings : [" << paddings.size() << "]" << paddings[0] << " " << paddings[1] << " " << paddings[2] << " " << paddings[3]; #endif bool pads_equal = (paddings[0] == paddings[1]) && (paddings[2] == paddings[3]); if (!pads_equal) { LOG(FATAL) << "padding requires pad_left == pad_right, pad_top == pad_bottom"; } auto& context = ctx_->As(); CHECK(context.cl_context() != nullptr); auto* x_img = param.x->data(); // VLOG(4) << "x_image" << x_img; auto out_image_shape = InitImageDimInfoWith(out_dims); #ifndef LITE_SHUTDOWN_LOG VLOG(4) << "out_image_shape = " << out_image_shape["width"] << " " << out_image_shape["height"]; #endif auto* out_img = param.output->mutable_data( out_image_shape["width"], out_image_shape["height"]); // VLOG(4) << "out_image" << out_img; int c_block = (out_dims[1] + 3) / 4; int w = out_dims[3]; int nh = out_dims[0] * out_dims[2]; auto global_work_size = cl::NDRange(c_block, w, nh); #ifndef LITE_SHUTDOWN_LOG VLOG(4) << "global_work_size : [" << 3 << "]" << c_block << " " << w << " " << nh << " "; #endif cl_int status; status = kernel_->setArg(0, *x_img); CL_CHECK_FATAL(status); status = kernel_->setArg(1, *out_img); CL_CHECK_FATAL(status); status = kernel_->setArg(2, static_cast(in_dims[2])); CL_CHECK_FATAL(status); status = kernel_->setArg(3, static_cast(in_dims[3])); CL_CHECK_FATAL(status); status = kernel_->setArg(4, static_cast(out_dims[2])); CL_CHECK_FATAL(status); status = kernel_->setArg(5, static_cast(out_dims[3])); CL_CHECK_FATAL(status); status = kernel_->setArg(6, static_cast(ksize[0])); CL_CHECK_FATAL(status); status = kernel_->setArg(7, static_cast(ksize[1])); CL_CHECK_FATAL(status); status = kernel_->setArg(8, static_cast(strides[0])); CL_CHECK_FATAL(status); status = kernel_->setArg(9, static_cast(strides[1])); CL_CHECK_FATAL(status); status = kernel_->setArg(10, static_cast(paddings[2])); CL_CHECK_FATAL(status); status = kernel_->setArg(11, static_cast(paddings[0])); CL_CHECK_FATAL(status); status = context.cl_context()->GetCommandQueue().enqueueNDRangeKernel( *(kernel_.get()), cl::NullRange, global_work_size, cl::NullRange, nullptr, event_.get()); CL_CHECK_FATAL(status); context.cl_wait_list()->emplace(out_img, event_); } private: std::shared_ptr kernel_; std::string kernel_func_name_{"pool_"}; std::string build_options_{"-DCL_DTYPE_half"}; std::string time_stamp_{GetTimeStamp()}; std::shared_ptr event_{new cl::Event}; }; } // namespace opencl } // namespace kernels } // namespace lite } // namespace paddle REGISTER_LITE_KERNEL(pool2d, kOpenCL, kFP16, kImageDefault, paddle::lite::kernels::opencl::PoolComputeImage2D, image2d) .BindInput("X", {LiteType::GetTensorTy(TARGET(kOpenCL), PRECISION(kFP16), DATALAYOUT(kImageDefault))}) .BindOutput("Out", {LiteType::GetTensorTy(TARGET(kOpenCL), PRECISION(kFP16), DATALAYOUT(kImageDefault))}) .Finalize();