Merge pull request #1804 from alekcac:youtube_link_fix
[profile/ivi/opencv.git] / modules / ocl / src / opencl / arithm_add_scalar.cl
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                           License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2010-2012, Institute Of Software Chinese Academy Of Science, all rights reserved.
14 // Copyright (C) 2010-2012, Advanced Micro Devices, Inc., all rights reserved.
15 // Third party copyrights are property of their respective owners.
16 //
17 // @Authors
18 //    Jia Haipeng, jiahaipeng95@gmail.com
19 //
20 // Redistribution and use in source and binary forms, with or without modification,
21 // are permitted provided that the following conditions are met:
22 //
23 //   * Redistribution's of source code must retain the above copyright notice,
24 //     this list of conditions and the following disclaimer.
25 //
26 //   * Redistribution's in binary form must reproduce the above copyright notice,
27 //     this list of conditions and the following disclaimer in the documentation
28 //     and/or other materials provided with the distribution.
29 //
30 //   * The name of the copyright holders may not be used to endorse or promote products
31 //     derived from this software without specific prior written permission.
32 //
33 // This software is provided by the copyright holders and contributors as is and
34 // any express or implied warranties, including, but not limited to, the implied
35 // warranties of merchantability and fitness for a particular purpose are disclaimed.
36 // In no event shall the Intel Corporation or contributors be liable for any direct,
37 // indirect, incidental, special, exemplary, or consequential damages
38 // (including, but not limited to, procurement of substitute goods or services;
39 // loss of use, data, or profits; or business interruption) however caused
40 // and on any theory of liability, whether in contract, strict liability,
41 // or tort (including negligence or otherwise) arising in any way out of
42 // the use of this software, even if advised of the possibility of such damage.
43 //
44 //M*/
45
46 #if defined (DOUBLE_SUPPORT)
47 #ifdef cl_khr_fp64
48 #pragma OPENCL EXTENSION cl_khr_fp64:enable
49 #elif defined (cl_amd_fp64)
50 #pragma OPENCL EXTENSION cl_amd_fp64:enable
51 #endif
52 #endif
53
54 #if defined (FUNC_ADD)
55 #define EXPRESSION dst[dst_index] = convertToT(convertToWT(src1[src1_index]) + scalar);
56 #endif
57
58 #if defined (FUNC_SUB)
59 #define EXPRESSION dst[dst_index] = convertToT(convertToWT(src1[src1_index]) - scalar);
60 #endif
61
62 #if defined (FUNC_MUL)
63 #define EXPRESSION dst[dst_index] = convertToT(convertToWT(src1[src1_index]) * scalar);
64 #endif
65
66 #if defined (FUNC_DIV)
67 #define EXPRESSION T zero = (T)(0); \
68     dst[dst_index] = src1[src1_index] == zero ? zero : convertToT(scalar / convertToWT(src1[src1_index]));
69 #endif
70
71 #if defined (FUNC_ABS)
72 #define EXPRESSION \
73     T value = src1[src1_index] > (T)(0) ? src1[src1_index] : -src1[src1_index]; \
74     dst[dst_index] = value;
75 #endif
76
77 #if defined (FUNC_ABS_DIFF)
78 #define EXPRESSION WT value = convertToWT(src1[src1_index]) - scalar; \
79     value = value > (WT)(0) ? value : -value; \
80     dst[dst_index] = convertToT(value);
81 #endif
82
83 ///////////////////////////////////////////////////////////////////////////////////
84 ///////////////////////////////// Add with scalar /////////////////////////////////
85 ///////////////////////////////////////////////////////////////////////////////////
86
87 __kernel void arithm_binary_op_scalar (__global T *src1, int src1_step, int src1_offset,
88                                  WT scalar,
89                                  __global T *dst,  int dst_step,  int dst_offset,
90                                  int cols, int rows)
91 {
92     int x = get_global_id(0);
93     int y = get_global_id(1);
94
95     if (x < cols && y < rows)
96     {
97         int src1_index = mad24(y, src1_step, x + src1_offset);
98         int dst_index = mad24(y, dst_step, x + dst_offset);
99
100         EXPRESSION
101
102     }
103 }