activation_kernel.cl 5.2 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

__kernel void leaky_relu(__read_only image2d_t input,
X
xiebaiyuan 已提交
70 71 72
                         __write_only image2d_t output,
                         __private const float threshold,
                         __private const float scale) {
73 74 75
  const int x = get_global_id(0);
  const int y = get_global_id(1);

X
xiebaiyuan 已提交
76 77
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
78 79 80

  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 已提交
81
  if (in.x < 0.0f) {
82 83
    in.x = s_val.x;
  }
X
xiebaiyuan 已提交
84
  if (in.y < 0.0f) {
85 86
    in.y = s_val.y;
  }
X
xiebaiyuan 已提交
87
  if (in.z < 0.0f) {
88 89
    in.z = s_val.z;
  }
X
xiebaiyuan 已提交
90
  if (in.w < 0.0f) {
91 92 93 94 95
    in.w = s_val.w;
  }
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), in);
}

96
__kernel void tanh_act(__read_only image2d_t input,
X
xiebaiyuan 已提交
97 98 99 100 101
                       __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
102

X
xiebaiyuan 已提交
103 104
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
105 106

  CL_DTYPE4 in = READ_IMG_TYPE(CL_DTYPE_CHAR, input, sampler, (int2)(x, y));
X
xiebaiyuan 已提交
107
  CL_DTYPE4 out = (exp(in) - exp(-in)) / (exp(in) + exp(-in));
108 109
  WRITE_IMG_TYPE(CL_DTYPE_CHAR, output, (int2)(x, y), out);
}
110 111 112 113

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

X
xiebaiyuan 已提交
118 119
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
120 121 122 123 124 125 126

  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 已提交
127 128 129 130 131
                    __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
132

X
xiebaiyuan 已提交
133 134
  const sampler_t sampler =
      CLK_NORMALIZED_COORDS_TRUE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST;
135 136

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