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
1252e870
Commit
1252e870
authored
Dec 05, 2014
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3482 from wangyan42164:ocl_brute_match_improve
parents
be5c9103
1c9f956b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
15 deletions
+27
-15
brute_force_match.cl
modules/features2d/src/opencl/brute_force_match.cl
+27
-15
No files found.
modules/features2d/src/opencl/brute_force_match.cl
View file @
1252e870
...
...
@@ -210,6 +210,8 @@ __kernel void BruteForceMatch_Match(
}
#
else
__local
value_type
*s_train
=
(
__local
value_type
*
)
sharebuffer
+
BLOCK_SIZE_ODD
*
BLOCK_SIZE
;
const
int
s_query_i
=
mad24
(
BLOCK_SIZE_ODD,
lidy,
lidx
)
;
const
int
s_train_i
=
mad24
(
BLOCK_SIZE_ODD,
lidx,
lidy
)
;
#
endif
float
myBestDistance
=
MAX_FLOAT
;
...
...
@@ -242,13 +244,15 @@ __kernel void BruteForceMatch_Match(
{
const
int
loadx
=
mad24
(
i,
BLOCK_SIZE,
lidx
)
;
//load
query
and
train
into
local
memory
s_query[mad24
(
BLOCK_SIZE_ODD,
lidy,
lidx
)
]
=
0
;
s_train[mad24
(
BLOCK_SIZE_ODD,
lidx,
lidy
)
]
=
0
;
if
(
loadx
<
query_cols
)
{
s_query[mad24
(
BLOCK_SIZE_ODD,
lidy,
lidx
)
]
=
query_vec[loadx]
;
s_train[mad24
(
BLOCK_SIZE_ODD,
lidx,
lidy
)
]
=
train_vec[loadx]
;
s_query[s_query_i]
=
query_vec[loadx]
;
s_train[s_train_i]
=
train_vec[loadx]
;
}
else
{
s_query[s_query_i]
=
0
;
s_train[s_train_i]
=
0
;
}
barrier
(
CLK_LOCAL_MEM_FENCE
)
;
...
...
@@ -337,18 +341,22 @@ __kernel void BruteForceMatch_RadiusMatch(
__local
value_type
*s_train
=
(
__local
value_type
*
)
sharebuffer
+
BLOCK_SIZE_ODD
*
BLOCK_SIZE
;
result_type
result
=
0
;
const
int
s_query_i
=
mad24
(
BLOCK_SIZE_ODD,
lidy,
lidx
)
;
const
int
s_train_i
=
mad24
(
BLOCK_SIZE_ODD,
lidx,
lidy
)
;
for
(
int
i
=
0
; i < (query_cols + BLOCK_SIZE - 1) / BLOCK_SIZE ; ++i)
{
//load
a
BLOCK_SIZE
*
BLOCK_SIZE
block
into
local
train.
const
int
loadx
=
mad24
(
BLOCK_SIZE,
i,
lidx
)
;
s_query[mad24
(
BLOCK_SIZE_ODD,
lidy,
lidx
)
]
=
0
;
s_train[mad24
(
BLOCK_SIZE_ODD,
lidx,
lidy
)
]
=
0
;
if
(
loadx
<
query_cols
)
{
s_query[mad24
(
BLOCK_SIZE_ODD,
lidy,
lidx
)
]
=
query_vec[loadx]
;
s_train[mad24
(
BLOCK_SIZE_ODD,
lidx,
lidy
)
]
=
train_vec[loadx]
;
s_query[s_query_i]
=
query_vec[loadx]
;
s_train[s_train_i]
=
train_vec[loadx]
;
}
else
{
s_query[s_query_i]
=
0
;
s_train[s_train_i]
=
0
;
}
//synchronize
to
make
sure
each
elem
for
reduceIteration
in
share
memory
is
written
already.
...
...
@@ -405,6 +413,8 @@ __kernel void BruteForceMatch_knnMatch(
}
#
else
__local
value_type
*s_train
=
(
__local
value_type
*
)
sharebuffer
+
BLOCK_SIZE_ODD
*
BLOCK_SIZE
;
const
int
s_query_i
=
mad24
(
BLOCK_SIZE_ODD,
lidy,
lidx
)
;
const
int
s_train_i
=
mad24
(
BLOCK_SIZE_ODD,
lidx,
lidy
)
;
#
endif
float
myBestDistance1
=
MAX_FLOAT
;
...
...
@@ -438,13 +448,15 @@ __kernel void BruteForceMatch_knnMatch(
{
const
int
loadx
=
mad24
(
BLOCK_SIZE,
i,
lidx
)
;
//load
query
and
train
into
local
memory
s_query[mad24
(
BLOCK_SIZE_ODD,
lidy,
lidx
)
]
=
0
;
s_train[mad24
(
BLOCK_SIZE_ODD,
lidx,
lidy
)
]
=
0
;
if
(
loadx
<
query_cols
)
{
s_query[mad24
(
BLOCK_SIZE_ODD,
lidy,
lidx
)
]
=
query_vec[loadx]
;
s_train[mad24
(
BLOCK_SIZE_ODD,
lidx,
lidy
)
]
=
train_vec[loadx]
;
s_query[s_query_i]
=
query_vec[loadx]
;
s_train[s_train_i]
=
train_vec[loadx]
;
}
else
{
s_query[s_query_i]
=
0
;
s_train[s_train_i]
=
0
;
}
barrier
(
CLK_LOCAL_MEM_FENCE
)
;
...
...
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