relu6_kernel.cpp 1.8 KB
Newer Older
Z
zp7 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* 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 RELU_OP

#include "operators/kernel/activation_kernel.h"

namespace paddle_mobile {
namespace operators {

template <>
Z
zp7 已提交
22
bool Relu6Kernel<GPU_CL, float>::Init(Relu6Param<GPU_CL>* param) {
Z
zp7 已提交
23 24 25 26 27
  this->cl_helper_.AddKernel("relu6", "relu6.cl");
  return true;
}

template <>
Z
zp7 已提交
28
void Relu6Kernel<GPU_CL, float>::Compute(const Relu6Param<GPU_CL>& param) {
Z
zp7 已提交
29 30 31
  auto kernel = this->cl_helper_.KernelAt(0);
  const auto* input = param.InputX();
  auto* output = param.Out();
Z
zp7 已提交
32
  float threshold = param.getThreshold();
Z
zp7 已提交
33 34 35
  auto default_work_size = this->cl_helper_.DefaultWorkSize(*output);
  auto inputImage = input->GetCLImage();
  auto outputImage = output->GetCLImage();
36 37 38 39 40 41 42
  cl_int status;
  status = clSetKernelArg(kernel, 0, sizeof(cl_mem), &inputImage);
  CL_CHECK_ERRORS(status);
  status = clSetKernelArg(kernel, 1, sizeof(cl_mem), &outputImage);
  CL_CHECK_ERRORS(status);
  status = clSetKernelArg(kernel, 2, sizeof(float), &threshold);
  CL_CHECK_ERRORS(status);
Z
zp7 已提交
43 44 45 46 47 48 49 50 51 52 53
  const size_t work_size[2] = {input->ImageWidth(), input->ImageHeight()};

  clEnqueueNDRangeKernel(this->cl_helper_.CLCommandQueue(), kernel, 2, NULL,
                         work_size, NULL, 0, NULL, NULL);
}

template class Relu6Kernel<GPU_CL, float>;

}  // namespace operators
}  // namespace paddle_mobile
#endif