9c9639fd424c43823e0639bb10bb1c93142e1bd0
[profile/ivi/opencv.git] / modules / ocl / src / split_merge.cpp
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 oclMaterials 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 #include "precomp.hpp"
47 #include "opencl_kernels.hpp"
48
49 using namespace cv;
50 using namespace cv::ocl;
51
52 namespace cv
53 {
54     namespace ocl
55     {
56         namespace split_merge
57         {
58             static void merge_vector_run(const oclMat *mat_src, size_t n, oclMat &mat_dst)
59             {
60                 if(!mat_dst.clCxt->supportsFeature(FEATURE_CL_DOUBLE) && mat_dst.type() == CV_64F)
61                 {
62                     CV_Error(CV_GpuNotSupported, "Selected device don't support double\r\n");
63                     return;
64                 }
65
66                 Context  *clCxt = mat_dst.clCxt;
67                 int channels = mat_dst.oclchannels();
68                 int depth = mat_dst.depth();
69
70                 string kernelName = "merge_vector";
71
72                 int vector_lengths[4][7] = {{0, 0, 0, 0, 0, 0, 0},
73                     {2, 2, 1, 1, 1, 1, 1},
74                     {4, 4, 2, 2 , 1, 1, 1},
75                     {1, 1, 1, 1, 1, 1, 1}
76                 };
77
78                 size_t vector_length = vector_lengths[channels - 1][depth];
79                 int offset_cols = (mat_dst.offset / mat_dst.elemSize()) & (vector_length - 1);
80                 int cols = divUp(mat_dst.cols + offset_cols, vector_length);
81
82                 size_t localThreads[3]  = { 64, 4, 1 };
83                 size_t globalThreads[3] = { cols, mat_dst.rows, 1 };
84
85                 int dst_step1 = mat_dst.cols * mat_dst.elemSize();
86                 vector<pair<size_t , const void *> > args;
87                 args.push_back( make_pair( sizeof(cl_mem), (void *)&mat_dst.data));
88                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_dst.step));
89                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_dst.offset));
90                 args.push_back( make_pair( sizeof(cl_mem), (void *)&mat_src[0].data));
91                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src[0].step));
92                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src[0].offset));
93                 args.push_back( make_pair( sizeof(cl_mem), (void *)&mat_src[1].data));
94                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src[1].step));
95                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src[1].offset));
96
97                 if(channels == 4)
98                 {
99                     args.push_back( make_pair( sizeof(cl_mem), (void *)&mat_src[2].data));
100                     args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src[2].step));
101                     args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src[2].offset));
102
103                     if(n == 3)
104                     {
105                         args.push_back( make_pair( sizeof(cl_mem), (void *)&mat_src[2].data));
106                         args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src[2].step));
107                         args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src[2].offset));
108                     }
109                     else if( n == 4)
110                     {
111                         args.push_back( make_pair( sizeof(cl_mem), (void *)&mat_src[3].data));
112                         args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src[3].step));
113                         args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src[3].offset));
114                     }
115                 }
116
117                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_dst.rows));
118                 args.push_back( make_pair( sizeof(cl_int), (void *)&cols));
119                 args.push_back( make_pair( sizeof(cl_int), (void *)&dst_step1));
120
121                 openCLExecuteKernel(clCxt, &merge_mat, kernelName, globalThreads, localThreads, args, channels, depth);
122             }
123             static void merge(const oclMat *mat_src, size_t n, oclMat &mat_dst)
124             {
125                 CV_Assert(mat_src);
126                 CV_Assert(n > 0);
127
128                 int depth = mat_src[0].depth();
129                 Size size = mat_src[0].size();
130
131                 int total_channels = 0;
132
133                 for(size_t i = 0; i < n; ++i)
134                 {
135                     CV_Assert(depth == mat_src[i].depth());
136                     CV_Assert(size == mat_src[i].size());
137
138                     total_channels += mat_src[i].oclchannels();
139                 }
140
141                 CV_Assert(total_channels <= 4);
142
143                 if(total_channels == 1)
144                 {
145                     mat_src[0].copyTo(mat_dst);
146                     return;
147                 }
148
149                 mat_dst.create(size, CV_MAKETYPE(depth, total_channels));
150                 merge_vector_run(mat_src, n, mat_dst);
151             }
152             static void split_vector_run(const oclMat &mat_src, oclMat *mat_dst)
153             {
154
155                 if(!mat_src.clCxt->supportsFeature(FEATURE_CL_DOUBLE) && mat_src.type() == CV_64F)
156                 {
157                     CV_Error(CV_GpuNotSupported, "Selected device don't support double\r\n");
158                     return;
159                 }
160
161                 Context  *clCxt = mat_src.clCxt;
162                 int channels = mat_src.oclchannels();
163                 int depth = mat_src.depth();
164
165                 string kernelName = "split_vector";
166
167                 int vector_lengths[4][7] = {{0, 0, 0, 0, 0, 0, 0},
168                     {4, 4, 2, 2, 1, 1, 1},
169                     {4, 4, 2, 2 , 1, 1, 1},
170                     {4, 4, 2, 2, 1, 1, 1}
171                 };
172
173                 size_t vector_length = vector_lengths[channels - 1][mat_dst[0].depth()];
174
175                 int max_offset_cols = 0;
176                 for(int i = 0; i < channels; i++)
177                 {
178                     int offset_cols = (mat_dst[i].offset / mat_dst[i].elemSize()) & (vector_length - 1);
179                     if(max_offset_cols < offset_cols)
180                         max_offset_cols = offset_cols;
181                 }
182
183                 int cols =  vector_length == 1 ? divUp(mat_src.cols, vector_length)
184                             : divUp(mat_src.cols + max_offset_cols, vector_length);
185
186                 size_t localThreads[3]  = { 64, 4, 1 };
187                 size_t globalThreads[3] = { cols, mat_src.rows, 1 };
188
189                 int dst_step1 = mat_dst[0].cols * mat_dst[0].elemSize();
190                 vector<pair<size_t , const void *> > args;
191                 args.push_back( make_pair( sizeof(cl_mem), (void *)&mat_src.data));
192                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src.step));
193                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src.offset));
194                 args.push_back( make_pair( sizeof(cl_mem), (void *)&mat_dst[0].data));
195                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_dst[0].step));
196                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_dst[0].offset));
197                 args.push_back( make_pair( sizeof(cl_mem), (void *)&mat_dst[1].data));
198                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_dst[1].step));
199                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_dst[1].offset));
200                 if(channels >= 3)
201                 {
202
203                     args.push_back( make_pair( sizeof(cl_mem), (void *)&mat_dst[2].data));
204                     args.push_back( make_pair( sizeof(cl_int), (void *)&mat_dst[2].step));
205                     args.push_back( make_pair( sizeof(cl_int), (void *)&mat_dst[2].offset));
206                 }
207                 if(channels >= 4)
208                 {
209                     args.push_back( make_pair( sizeof(cl_mem), (void *)&mat_dst[3].data));
210                     args.push_back( make_pair( sizeof(cl_int), (void *)&mat_dst[3].step));
211                     args.push_back( make_pair( sizeof(cl_int), (void *)&mat_dst[3].offset));
212                 }
213
214                 args.push_back( make_pair( sizeof(cl_int), (void *)&mat_src.rows));
215                 args.push_back( make_pair( sizeof(cl_int), (void *)&cols));
216                 args.push_back( make_pair( sizeof(cl_int), (void *)&dst_step1));
217
218                 openCLExecuteKernel(clCxt, &split_mat, kernelName, globalThreads, localThreads, args, channels, depth);
219             }
220             static void split(const oclMat &mat_src, oclMat *mat_dst)
221             {
222                 CV_Assert(mat_dst);
223
224                 int depth = mat_src.depth();
225                 int num_channels = mat_src.oclchannels();
226                 Size size = mat_src.size();
227
228                 if(num_channels == 1)
229                 {
230                     mat_src.copyTo(mat_dst[0]);
231                     return;
232                 }
233
234                 int i;
235                 for(i = 0; i < num_channels; i++)
236                     mat_dst[i].create(size, CV_MAKETYPE(depth, 1));
237
238                 split_vector_run(mat_src, mat_dst);
239             }
240         }
241     }
242 }
243
244 void cv::ocl::merge(const oclMat *src, size_t n, oclMat &dst)
245 {
246     split_merge::merge(src, n, dst);
247 }
248 void cv::ocl::merge(const vector<oclMat> &src, oclMat &dst)
249 {
250     split_merge::merge(&src[0], src.size(), dst);
251 }
252
253 void cv::ocl::split(const oclMat &src, oclMat *dst)
254 {
255     split_merge::split(src, dst);
256 }
257 void cv::ocl::split(const oclMat &src, vector<oclMat> &dst)
258 {
259     dst.resize(src.oclchannels());
260     if(src.oclchannels() > 0)
261         split_merge::split(src, &dst[0]);
262 }