activation_kernel.cl 5.8 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
__kernel void relu(__read_only image2d_t input,
18 19 20
                   __write_only image2d_t output,
                   __private const float threshold,
                   __private const float scale) {
X
xiebaiyuan 已提交
21 22
  const int x = get_global_id(0);  // image_width
  const int y = get_global_id(1);  // image_height
23

X
xiebaiyuan 已提交
24 25
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
26 27 28 29 30 31

  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);
}

32 33
__kernel void relu6(__read_only image2d_t input,
                    __write_only image2d_t output,
34
                    __private const float threshold,
X
xiebaiyuan 已提交
35
                    __private const float scale) {
36 37 38
  const int x = get_global_id(0);
  const int y = get_global_id(1);

X
xiebaiyuan 已提交
39 40
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
41 42 43 44 45 46

  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);
}
47 48

__kernel void sigmoid(__read_only image2d_t input,
49 50
                      __write_only image2d_t output,
                      __private const float threshold,
51 52 53
                      __private const float scale) {
  const int x = get_global_id(0);  // image_width
  const int y = get_global_id(1);  // image_height
54

55 56
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
57 58

  CL_DTYPE4 in = READ_IMG_TYPE(CL_DTYPE_CHAR, input, sampler, (int2)(x, y));
59
  CL_DTYPE4 out;
X
xiebaiyuan 已提交
60 61 62 63 64

  out.x = (CL_DTYPE)(1.0f / (1.0f + pow(2.71828182f, -1.0f * (float)(in.x))));
  out.y = (CL_DTYPE)(1.0f / (1.0f + pow(2.71828182f, -1.0f * (float)(in.y))));
  out.z = (CL_DTYPE)(1.0f / (1.0f + pow(2.71828182f, -1.0f * (float)(in.z))));
  out.w = (CL_DTYPE)(1.0f / (1.0f + pow(2.71828182f, -1.0f * (float)(in.w))));
65

66 67
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), out);
}
68

69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
__kernel void hard_sigmoid(__read_only image2d_t input,
                           __write_only image2d_t output,
                           __private const float value_offset,
                           __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 = clamp(in * scale + value_offset, 0.0, 1.0);

  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), out);
}

85
__kernel void leaky_relu(__read_only image2d_t input,
X
xiebaiyuan 已提交
86 87 88
                         __write_only image2d_t output,
                         __private const float threshold,
                         __private const float scale) {
89 90 91
  const int x = get_global_id(0);
  const int y = get_global_id(1);

X
xiebaiyuan 已提交
92 93
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
94 95 96

  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;
X
xiebaiyuan 已提交
97
  if (in.x < 0.0f) {
98 99
    in.x = s_val.x;
  }
X
xiebaiyuan 已提交
100
  if (in.y < 0.0f) {
101 102
    in.y = s_val.y;
  }
X
xiebaiyuan 已提交
103
  if (in.z < 0.0f) {
104 105
    in.z = s_val.z;
  }
X
xiebaiyuan 已提交
106
  if (in.w < 0.0f) {
107 108 109 110 111
    in.w = s_val.w;
  }
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), in);
}

112
__kernel void tanh_act(__read_only image2d_t input,
X
xiebaiyuan 已提交
113 114 115 116 117
                       __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
118

X
xiebaiyuan 已提交
119 120
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
121 122

  CL_DTYPE4 in = READ_IMG_TYPE(CL_DTYPE_CHAR, input, sampler, (int2)(x, y));
X
xiebaiyuan 已提交
123
  CL_DTYPE4 out = (exp(in) - exp(-in)) / (exp(in) + exp(-in));
124 125
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), out);
}
126 127 128 129

__kernel void exp_act(__read_only image2d_t input,
                      __write_only image2d_t output,
                      __private const float threshold,
X
xiebaiyuan 已提交
130 131 132
                      __private const float scale) {
  const int x = get_global_id(0);  // image_width
  const int y = get_global_id(1);  // image_height
133

X
xiebaiyuan 已提交
134 135
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
136 137 138 139 140 141 142

  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,
X
xiebaiyuan 已提交
143 144 145 146 147
                    __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
148

X
xiebaiyuan 已提交
149 150
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
151 152

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