Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
437927b7
Commit
437927b7
authored
May 27, 2014
by
Elena Gvozdeva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
optimized index access
parent
c7dc8848
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
20 deletions
+48
-20
flip.cl
modules/core/src/opencl/flip.cl
+48
-20
No files found.
modules/core/src/opencl/flip.cl
View file @
437927b7
...
@@ -54,18 +54,28 @@ __kernel void arithm_flip_rows(__global const uchar * srcptr, int src_step, int
...
@@ -54,18 +54,28 @@ __kernel void arithm_flip_rows(__global const uchar * srcptr, int src_step, int
int
rows,
int
cols,
int
thread_rows,
int
thread_cols
)
int
rows,
int
cols,
int
thread_rows,
int
thread_cols
)
{
{
int
x
=
get_global_id
(
0
)
;
int
x
=
get_global_id
(
0
)
;
int
y
=
get_global_id
(
1
)
*PIX_PER_WI_Y
;
int
y
0
=
get_global_id
(
1
)
*PIX_PER_WI_Y
;
if
(
x
<
cols
)
if
(
x
<
cols
)
{
{
int
src_index0
=
mad24
(
y0,
src_step,
mad24
(
x,
TSIZE,
src_offset
))
;
int
src_index1
=
mad24
(
rows
-
y0
-
1
,
src_step,
mad24
(
x,
TSIZE,
src_offset
))
;
int
dst_index0
=
mad24
(
y0,
dst_step,
mad24
(
x,
TSIZE,
dst_offset
))
;
int
dst_index1
=
mad24
(
rows
-
y0
-
1
,
dst_step,
mad24
(
x,
TSIZE,
dst_offset
))
;
#
pragma
unroll
#
pragma
unroll
for
(
int
cy
=
0
; cy < PIX_PER_WI_Y && y < thread_rows; ++cy,
++y)
for
(
int
y
=
y0,
y1
=
min
(
thread_rows,
y0
+
PIX_PER_WI_Y
)
; y < y1;
++y)
{
{
T
src0
=
loadpix
(
srcptr
+
mad24
(
y,
src_step,
mad24
(
x,
TSIZE,
src_offset
)))
;
T
src0
=
loadpix
(
srcptr
+
src_index0
)
;
T
src1
=
loadpix
(
srcptr
+
mad24
(
rows
-
y
-
1
,
src_step,
mad24
(
x,
TSIZE,
src_offset
)))
;
T
src1
=
loadpix
(
srcptr
+
src_index1
)
;
storepix
(
src1,
dstptr
+
dst_index0
)
;
storepix
(
src0,
dstptr
+
dst_index1
)
;
storepix
(
src1,
dstptr
+
mad24
(
y,
dst_step,
mad24
(
x,
TSIZE,
dst_offset
)))
;
src_index0
+=
src_step
;
storepix
(
src0,
dstptr
+
mad24
(
rows
-
y
-
1
,
dst_step,
mad24
(
x,
TSIZE,
dst_offset
)))
;
src_index1
-=
src_step
;
dst_index0
+=
dst_step
;
dst_index1
-=
dst_step
;
}
}
}
}
}
}
...
@@ -75,19 +85,28 @@ __kernel void arithm_flip_rows_cols(__global const uchar * srcptr, int src_step,
...
@@ -75,19 +85,28 @@ __kernel void arithm_flip_rows_cols(__global const uchar * srcptr, int src_step,
int
rows,
int
cols,
int
thread_rows,
int
thread_cols
)
int
rows,
int
cols,
int
thread_rows,
int
thread_cols
)
{
{
int
x
=
get_global_id
(
0
)
;
int
x
=
get_global_id
(
0
)
;
int
y
=
get_global_id
(
1
)
*PIX_PER_WI_Y
;
int
y
0
=
get_global_id
(
1
)
*PIX_PER_WI_Y
;
if
(
x
<
cols
)
if
(
x
<
cols
)
{
{
int
x1
=
cols
-
x
-
1
;
int
src_index0
=
mad24
(
y0,
src_step,
mad24
(
x,
TSIZE,
src_offset
))
;
int
src_index1
=
mad24
(
rows
-
y0
-
1
,
src_step,
mad24
(
cols
-
x
-
1
,
TSIZE,
src_offset
))
;
int
dst_index0
=
mad24
(
y0,
dst_step,
mad24
(
x,
TSIZE,
dst_offset
))
;
int
dst_index1
=
mad24
(
rows
-
y0
-
1
,
dst_step,
mad24
(
cols
-
x
-
1
,
TSIZE,
dst_offset
))
;
#
pragma
unroll
#
pragma
unroll
for
(
int
cy
=
0
; cy < PIX_PER_WI_Y && y < thread_rows; ++cy,
++y)
for
(
int
y
=
y0,
y1
=
min
(
thread_rows,
y0
+
PIX_PER_WI_Y
)
; y < y1;
++y)
{
{
T
src0
=
loadpix
(
srcptr
+
mad24
(
y,
src_step,
mad24
(
x,
TSIZE,
src_offset
))
)
;
T
src0
=
loadpix
(
srcptr
+
src_index0
)
;
T
src1
=
loadpix
(
srcptr
+
mad24
(
rows
-
y
-
1
,
src_step,
mad24
(
x1,
TSIZE,
src_offset
))
)
;
T
src1
=
loadpix
(
srcptr
+
src_index1
)
;
storepix
(
src0,
dstptr
+
mad24
(
rows
-
y
-
1
,
dst_step,
mad24
(
x1,
TSIZE,
dst_offset
)))
;
storepix
(
src1,
dstptr
+
dst_index0
)
;
storepix
(
src1,
dstptr
+
mad24
(
y,
dst_step,
mad24
(
x,
TSIZE,
dst_offset
)))
;
storepix
(
src0,
dstptr
+
dst_index1
)
;
src_index0
+=
src_step
;
src_index1
-=
src_step
;
dst_index0
+=
dst_step
;
dst_index1
-=
dst_step
;
}
}
}
}
}
}
...
@@ -97,19 +116,28 @@ __kernel void arithm_flip_cols(__global const uchar * srcptr, int src_step, int
...
@@ -97,19 +116,28 @@ __kernel void arithm_flip_cols(__global const uchar * srcptr, int src_step, int
int
rows,
int
cols,
int
thread_rows,
int
thread_cols
)
int
rows,
int
cols,
int
thread_rows,
int
thread_cols
)
{
{
int
x
=
get_global_id
(
0
)
;
int
x
=
get_global_id
(
0
)
;
int
y
=
get_global_id
(
1
)
*PIX_PER_WI_Y
;
int
y
0
=
get_global_id
(
1
)
*PIX_PER_WI_Y
;
if
(
x
<
thread_cols
)
if
(
x
<
thread_cols
)
{
{
int
x1
=
cols
-
x
-
1
;
int
src_index0
=
mad24
(
y0,
src_step,
mad24
(
x,
TSIZE,
src_offset
))
;
int
src_index1
=
mad24
(
y0,
src_step,
mad24
(
cols
-
x
-
1
,
TSIZE,
src_offset
))
;
int
dst_index0
=
mad24
(
y0,
dst_step,
mad24
(
x,
TSIZE,
dst_offset
))
;
int
dst_index1
=
mad24
(
y0,
dst_step,
mad24
(
cols
-
x
-
1
,
TSIZE,
dst_offset
))
;
#
pragma
unroll
#
pragma
unroll
for
(
int
cy
=
0
; cy < PIX_PER_WI_Y && y < rows; ++cy,
++y)
for
(
int
y
=
y0,
y1
=
min
(
rows,
y0
+
PIX_PER_WI_Y
)
; y < y1;
++y)
{
{
T
src0
=
loadpix
(
srcptr
+
mad24
(
y,
src_step,
mad24
(
x,
TSIZE,
src_offset
)))
;
T
src0
=
loadpix
(
srcptr
+
src_index0
)
;
T
src1
=
loadpix
(
srcptr
+
mad24
(
y,
src_step,
mad24
(
x1,
TSIZE,
src_offset
)))
;
T
src1
=
loadpix
(
srcptr
+
src_index1
)
;
storepix
(
src1,
dstptr
+
dst_index0
)
;
storepix
(
src0,
dstptr
+
dst_index1
)
;
storepix
(
src0,
dstptr
+
mad24
(
y,
dst_step,
mad24
(
x1,
TSIZE,
dst_offset
)))
;
src_index0
+=
src_step
;
storepix
(
src1,
dstptr
+
mad24
(
y,
dst_step,
mad24
(
x,
TSIZE,
dst_offset
)))
;
src_index1
+=
src_step
;
dst_index0
+=
dst_step
;
dst_index1
+=
dst_step
;
}
}
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment