activation_kernel.cl 5.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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. */

#include <cl_common.h>

17 18

__kernel void relu(__read_only image2d_t input,
19 20 21
                   __write_only image2d_t output,
                   __private const float threshold,
                   __private const float scale) {
22 23 24 25 26 27 28 29 30 31 32 33 34 35

  const int x = get_global_id(0); // image_width
  const int y = get_global_id(1); // image_height

  const sampler_t sampler = CLK_NORMALIZED_COORDS_TRUE |
                            CLK_ADDRESS_CLAMP |
                            CLK_FILTER_NEAREST;

  CL_DTYPE4 in = READ_IMG_TYPE(CL_DTYPE_CHAR, input, sampler, (int2)(x, y));
  in = max((CL_DTYPE4)(0.0f), in);
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), in);
}


36 37
__kernel void relu6(__read_only image2d_t input,
                    __write_only image2d_t output,
38 39
                    __private const float threshold,
                   __private const float scale){
40 41 42 43 44 45 46 47 48 49 50 51 52

  const int x = get_global_id(0);
  const int y = get_global_id(1);

  const sampler_t sampler = CLK_NORMALIZED_COORDS_TRUE |
                            CLK_ADDRESS_CLAMP |
                            CLK_FILTER_NEAREST;

  CL_DTYPE4 in = READ_IMG_TYPE(CL_DTYPE_CHAR, input, sampler, (int2)(x, y));
  in = max((CL_DTYPE4)(0.0f, 0.0f, 0.0f, 0.0f), in);
  in = min((CL_DTYPE4)(threshold, threshold, threshold, threshold), in);
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), in);
}
53 54 55


__kernel void sigmoid(__read_only image2d_t input,
56 57
                      __write_only image2d_t output,
                      __private const float threshold,
58 59 60
                      __private const float scale) {
  const int x = get_global_id(0);  // image_width
  const int y = get_global_id(1);  // image_height
61

62 63
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
64 65

  CL_DTYPE4 in = READ_IMG_TYPE(CL_DTYPE_CHAR, input, sampler, (int2)(x, y));
66 67 68 69 70 71
  CL_DTYPE4 out;
  out.x = 1.0 / (1.0 + pow(2.71828182, -1.0 * (float)(in.x)));
  out.y = 1.0 / (1.0 + pow(2.71828182, -1.0 * (float)(in.y)));
  out.z = 1.0 / (1.0 + pow(2.71828182, -1.0 * (float)(in.z)));
  out.w = 1.0 / (1.0 + pow(2.71828182, -1.0 * (float)(in.w)));

72 73
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), out);
}
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

__kernel void leaky_relu(__read_only image2d_t input,
                      __write_only image2d_t output,
                      __private const float threshold,
                      __private const float scale) {
  const int x = get_global_id(0);
  const int y = get_global_id(1);

  const sampler_t sampler = CLK_NORMALIZED_COORDS_TRUE |
                            CLK_ADDRESS_CLAMP |
                            CLK_FILTER_NEAREST;

  CL_DTYPE4 in = READ_IMG_TYPE(CL_DTYPE_CHAR, input, sampler, (int2)(x, y));
  CL_DTYPE4 s_val = CONVERT_TYPE_TO(scale, CL_DTYPE) * in;
  if (in.x < 0.0f){
    in.x = s_val.x;
  }
  if (in.y < 0.0f){
    in.y = s_val.y;
  }
  if (in.z < 0.0f){
    in.z = s_val.z;
  }
  if (in.w < 0.0f){
    in.w = s_val.w;
  }
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), in);
}

103
__kernel void tanh_act(__read_only image2d_t input,
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
                      __write_only image2d_t output,
                      __private const float threshold,
                      __private const float scale) {

  const int x = get_global_id(0); // image_width
  const int y = get_global_id(1); // image_height

  const sampler_t sampler = CLK_NORMALIZED_COORDS_TRUE |
                            CLK_ADDRESS_CLAMP |
                            CLK_FILTER_NEAREST;

  CL_DTYPE4 in = READ_IMG_TYPE(CL_DTYPE_CHAR, input, sampler, (int2)(x, y));
  CL_DTYPE4 out= (exp(in) - exp(-in))/ (exp(in) + exp(-in));
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), out);
}
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

__kernel void exp_act(__read_only image2d_t input,
                      __write_only image2d_t output,
                      __private const float threshold,
                   __private const float scale) {

  const int x = get_global_id(0); // image_width
  const int y = get_global_id(1); // image_height

  const sampler_t sampler = CLK_NORMALIZED_COORDS_TRUE |
                            CLK_ADDRESS_CLAMP |
                            CLK_FILTER_NEAREST;

  CL_DTYPE4 in = READ_IMG_TYPE(CL_DTYPE_CHAR, input, sampler, (int2)(x, y));
  CL_DTYPE4 out = exp(in);
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), out);
}

__kernel void swish(__read_only image2d_t input,
                      __write_only image2d_t output,
                      __private const float threshold,
                   __private const float scale) {

  const int x = get_global_id(0); // image_width
  const int y = get_global_id(1); // image_height

  const sampler_t sampler = CLK_NORMALIZED_COORDS_TRUE |
                            CLK_ADDRESS_CLAMP |
                            CLK_FILTER_NEAREST;

  CL_DTYPE4 in = READ_IMG_TYPE(CL_DTYPE_CHAR, input, sampler, (int2)(x, y));
150
  CL_DTYPE4 out = in / (1 + exp(-(CL_DTYPE)scale * in));
151 152 153
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), out);
}