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
49474903
Commit
49474903
authored
Dec 02, 2013
by
Ilya Lavrenov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactoring
parent
49e729f8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
51 additions
and
39 deletions
+51
-39
arithm.cpp
modules/core/src/arithm.cpp
+10
-8
mathfuncs.cpp
modules/core/src/mathfuncs.cpp
+22
-16
matrix.cpp
modules/core/src/matrix.cpp
+4
-2
reduce.cl
modules/core/src/opencl/reduce.cl
+5
-9
stat.cpp
modules/core/src/stat.cpp
+10
-4
No files found.
modules/core/src/arithm.cpp
View file @
49474903
...
...
@@ -2598,14 +2598,6 @@ static bool ocl_compare(InputArray _src1, InputArray _src2, OutputArray _dst, in
if
(
!
doubleSupport
&&
(
depth
==
CV_64F
||
_src2
.
depth
()
==
CV_64F
))
return
false
;
CV_Assert
(
type
==
type2
);
UMat
src1
=
_src1
.
getUMat
(),
src2
=
_src2
.
getUMat
();
Size
size
=
src1
.
size
();
CV_Assert
(
size
==
src2
.
size
());
_dst
.
create
(
size
,
CV_8UC
(
cn
));
UMat
dst
=
_dst
.
getUMat
();
const
char
*
const
operationMap
[]
=
{
"=="
,
">"
,
">="
,
"<"
,
"<="
,
"!="
};
ocl
::
Kernel
k
(
"KF"
,
ocl
::
core
::
arithm_oclsrc
,
format
(
"-D BINARY_OP -D srcT1=%s -D workT=srcT1"
...
...
@@ -2613,6 +2605,16 @@ static bool ocl_compare(InputArray _src1, InputArray _src2, OutputArray _dst, in
ocl
::
typeToStr
(
CV_MAKE_TYPE
(
depth
,
1
)),
operationMap
[
op
],
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
));
if
(
k
.
empty
())
return
false
;
CV_Assert
(
type
==
type2
);
UMat
src1
=
_src1
.
getUMat
(),
src2
=
_src2
.
getUMat
();
Size
size
=
src1
.
size
();
CV_Assert
(
size
==
src2
.
size
());
_dst
.
create
(
size
,
CV_8UC
(
cn
));
UMat
dst
=
_dst
.
getUMat
();
k
.
args
(
ocl
::
KernelArg
::
ReadOnlyNoSize
(
src1
),
ocl
::
KernelArg
::
ReadOnlyNoSize
(
src2
),
...
...
modules/core/src/mathfuncs.cpp
View file @
49474903
...
...
@@ -508,6 +508,14 @@ static bool ocl_cartToPolar( InputArray _src1, InputArray _src2,
(
depth
==
CV_64F
&&
!
doubleSupport
)
)
return
false
;
ocl
::
Kernel
k
(
"KF"
,
ocl
::
core
::
arithm_oclsrc
,
format
(
"-D BINARY_OP -D dstT=%s -D OP_CTP_%s%s"
,
ocl
::
typeToStr
(
CV_MAKE_TYPE
(
depth
,
1
)),
angleInDegrees
?
"AD"
:
"AR"
,
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
));
if
(
k
.
empty
())
return
false
;
UMat
src1
=
_src1
.
getUMat
(),
src2
=
_src2
.
getUMat
();
Size
size
=
src1
.
size
();
CV_Assert
(
size
==
src2
.
size
()
);
...
...
@@ -516,12 +524,6 @@ static bool ocl_cartToPolar( InputArray _src1, InputArray _src2,
_dst2
.
create
(
size
,
type
);
UMat
dst1
=
_dst1
.
getUMat
(),
dst2
=
_dst2
.
getUMat
();
ocl
::
Kernel
k
(
"KF"
,
ocl
::
core
::
arithm_oclsrc
,
format
(
"-D BINARY_OP -D dstT=%s -D OP_CTP_%s%s"
,
ocl
::
typeToStr
(
CV_MAKE_TYPE
(
depth
,
1
)),
angleInDegrees
?
"AD"
:
"AR"
,
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
));
k
.
args
(
ocl
::
KernelArg
::
ReadOnlyNoSize
(
src1
),
ocl
::
KernelArg
::
ReadOnlyNoSize
(
src2
),
ocl
::
KernelArg
::
WriteOnly
(
dst1
,
cn
),
...
...
@@ -690,6 +692,14 @@ static bool ocl_polarToCart( InputArray _mag, InputArray _angle,
if
(
!
doubleSupport
&&
depth
==
CV_64F
)
return
false
;
ocl
::
Kernel
k
(
"KF"
,
ocl
::
core
::
arithm_oclsrc
,
format
(
"-D dstT=%s -D BINARY_OP -D OP_PTC_%s%s"
,
ocl
::
typeToStr
(
CV_MAKE_TYPE
(
depth
,
1
)),
angleInDegrees
?
"AD"
:
"AR"
,
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
));
if
(
k
.
empty
())
return
false
;
UMat
mag
=
_mag
.
getUMat
(),
angle
=
_angle
.
getUMat
();
Size
size
=
angle
.
size
();
CV_Assert
(
mag
.
size
()
==
size
);
...
...
@@ -698,12 +708,6 @@ static bool ocl_polarToCart( InputArray _mag, InputArray _angle,
_dst2
.
create
(
size
,
type
);
UMat
dst1
=
_dst1
.
getUMat
(),
dst2
=
_dst2
.
getUMat
();
ocl
::
Kernel
k
(
"KF"
,
ocl
::
core
::
arithm_oclsrc
,
format
(
"-D dstT=%s -D BINARY_OP -D OP_PTC_%s%s"
,
ocl
::
typeToStr
(
CV_MAKE_TYPE
(
depth
,
1
)),
angleInDegrees
?
"AD"
:
"AR"
,
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
));
k
.
args
(
ocl
::
KernelArg
::
ReadOnlyNoSize
(
mag
),
ocl
::
KernelArg
::
ReadOnlyNoSize
(
angle
),
ocl
::
KernelArg
::
WriteOnly
(
dst1
,
cn
),
ocl
::
KernelArg
::
WriteOnlyNoSize
(
dst2
));
...
...
@@ -2037,13 +2041,15 @@ static bool ocl_pow(InputArray _src, double power, OutputArray _dst)
(
depth
==
CV_64F
&&
!
doubleSupport
)
)
return
false
;
UMat
src
=
_src
.
getUMat
();
_dst
.
create
(
src
.
size
(),
type
);
UMat
dst
=
_dst
.
getUMat
();
ocl
::
Kernel
k
(
"KF"
,
ocl
::
core
::
arithm_oclsrc
,
format
(
"-D dstT=%s -D OP_POW -D UNARY_OP%s"
,
ocl
::
typeToStr
(
CV_MAKE_TYPE
(
depth
,
1
)),
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
));
if
(
k
.
empty
())
return
false
;
UMat
src
=
_src
.
getUMat
();
_dst
.
create
(
src
.
size
(),
type
);
UMat
dst
=
_dst
.
getUMat
();
ocl
::
KernelArg
srcarg
=
ocl
::
KernelArg
::
ReadOnlyNoSize
(
src
),
dstarg
=
ocl
::
KernelArg
::
WriteOnly
(
dst
,
cn
);
...
...
modules/core/src/matrix.cpp
View file @
49474903
...
...
@@ -2378,10 +2378,12 @@ static bool ocl_setIdentity( InputOutputArray _m, const Scalar& s )
if
(
cn
==
3
)
return
false
;
UMat
m
=
_m
.
getUMat
();
ocl
::
Kernel
k
(
"setIdentity"
,
ocl
::
core
::
set_identity_oclsrc
,
format
(
"-D T=%s"
,
ocl
::
memopTypeToStr
(
type
)));
if
(
k
.
empty
())
return
false
;
UMat
m
=
_m
.
getUMat
();
k
.
args
(
ocl
::
KernelArg
::
WriteOnly
(
m
),
ocl
::
KernelArg
::
Constant
(
Mat
(
1
,
1
,
type
,
s
)));
size_t
globalsize
[
2
]
=
{
m
.
cols
,
m
.
rows
};
...
...
modules/core/src/opencl/reduce.cl
View file @
49474903
...
...
@@ -66,7 +66,7 @@
dstT
temp
=
convertToDT
(
src[0]
)
; \
FUNC
(
accumulator,
temp
)
#
define
REDUCE_LOCAL_1
\
localmem[lid]
+=
accumulator
localmem[lid
-
WGS2_ALIGNED
]
+=
accumulator
#
define
REDUCE_LOCAL_2
\
localmem[lid]
+=
localmem[lid2]
...
...
@@ -78,7 +78,7 @@
#
define
REDUCE_GLOBAL
\
accumulator
+=
src[0]
==
zero
?
zero
:
one
#
define
REDUCE_LOCAL_1
\
localmem[lid]
+=
accumulator
localmem[lid
-
WGS2_ALIGNED
]
+=
accumulator
#
define
REDUCE_LOCAL_2
\
localmem[lid]
+=
localmem[lid2]
...
...
@@ -95,10 +95,6 @@ __kernel void reduce(__global const uchar * srcptr, int step, int offset, int co
int
id
=
get_global_id
(
0
)
;
__local
dstT
localmem[WGS2_ALIGNED]
;
if
(
lid
<
WGS2_ALIGNED
)
localmem[lid]
=
(
dstT
)(
0
)
;
barrier
(
CLK_LOCAL_MEM_FENCE
)
;
DEFINE_ACCUMULATOR
;
for
(
int
grain
=
groupnum
*
WGS
; id < total; id += grain)
...
...
@@ -108,11 +104,11 @@ __kernel void reduce(__global const uchar * srcptr, int step, int offset, int co
REDUCE_GLOBAL
;
}
if
(
lid
>=
WGS2_ALIGNED
)
localmem[lid
-
WGS2_ALIGNED
]
=
accumulator
;
if
(
lid
<
WGS2_ALIGNED
)
localmem[lid]
=
accumulator
;
barrier
(
CLK_LOCAL_MEM_FENCE
)
;
if
(
lid
<
WGS2_ALIGNED
)
if
(
lid
>=
WGS2_ALIGNED
)
REDUCE_LOCAL_1
;
barrier
(
CLK_LOCAL_MEM_FENCE
)
;
...
...
modules/core/src/stat.cpp
View file @
49474903
...
...
@@ -480,7 +480,6 @@ static bool ocl_sum( InputArray _src, Scalar & res, int sum_op )
size_t
wgs
=
ocl
::
Device
::
getDefault
().
maxWorkGroupSize
();
int
ddepth
=
std
::
max
(
CV_32S
,
depth
),
dtype
=
CV_MAKE_TYPE
(
ddepth
,
cn
);
UMat
src
=
_src
.
getUMat
(),
db
(
1
,
dbsize
,
dtype
);
int
wgs2_aligned
=
1
;
while
(
wgs2_aligned
<
(
int
)
wgs
)
...
...
@@ -494,6 +493,10 @@ static bool ocl_sum( InputArray _src, Scalar & res, int sum_op )
ocl
::
typeToStr
(
type
),
ocl
::
typeToStr
(
dtype
),
ocl
::
convertTypeStr
(
depth
,
ddepth
,
cn
,
cvt
),
opMap
[
sum_op
],
(
int
)
wgs
,
wgs2_aligned
,
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
));
if
(
k
.
empty
())
return
false
;
UMat
src
=
_src
.
getUMat
(),
db
(
1
,
dbsize
,
dtype
);
k
.
args
(
ocl
::
KernelArg
::
ReadOnlyNoSize
(
src
),
src
.
cols
,
(
int
)
src
.
total
(),
dbsize
,
ocl
::
KernelArg
::
PtrWriteOnly
(
db
));
...
...
@@ -611,7 +614,7 @@ namespace cv {
static
bool
ocl_countNonZero
(
InputArray
_src
,
int
&
res
)
{
int
depth
=
_src
.
depth
(
);
int
type
=
_src
.
type
(),
depth
=
CV_MAT_DEPTH
(
type
);
bool
doubleSupport
=
ocl
::
Device
::
getDefault
().
doubleFPConfig
()
>
0
;
if
(
depth
==
CV_64F
&&
!
doubleSupport
)
...
...
@@ -619,7 +622,6 @@ static bool ocl_countNonZero( InputArray _src, int & res )
int
dbsize
=
ocl
::
Device
::
getDefault
().
maxComputeUnits
();
size_t
wgs
=
ocl
::
Device
::
getDefault
().
maxWorkGroupSize
();
UMat
src
=
_src
.
getUMat
(),
db
(
1
,
dbsize
,
CV_32SC1
);
int
wgs2_aligned
=
1
;
while
(
wgs2_aligned
<
(
int
)
wgs
)
...
...
@@ -628,8 +630,12 @@ static bool ocl_countNonZero( InputArray _src, int & res )
ocl
::
Kernel
k
(
"reduce"
,
ocl
::
core
::
reduce_oclsrc
,
format
(
"-D srcT=%s -D OP_COUNT_NON_ZERO -D WGS=%d -D WGS2_ALIGNED=%d%s"
,
ocl
::
typeToStr
(
src
.
type
()
),
(
int
)
wgs
,
ocl
::
typeToStr
(
type
),
(
int
)
wgs
,
wgs2_aligned
,
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
));
if
(
k
.
empty
())
return
false
;
UMat
src
=
_src
.
getUMat
(),
db
(
1
,
dbsize
,
CV_32SC1
);
k
.
args
(
ocl
::
KernelArg
::
ReadOnlyNoSize
(
src
),
src
.
cols
,
(
int
)
src
.
total
(),
dbsize
,
ocl
::
KernelArg
::
PtrWriteOnly
(
db
));
...
...
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