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
8293ed7f
Commit
8293ed7f
authored
Aug 05, 2015
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add tests from issue 4468 (#5062)
parent
da0c1595
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
0 deletions
+68
-0
test_umat.cpp
modules/core/test/test_umat.cpp
+68
-0
No files found.
modules/core/test/test_umat.cpp
View file @
8293ed7f
...
...
@@ -1026,6 +1026,74 @@ TEST(UMat, map_unmap_counting)
}
///////////// oclCleanupCallback threadsafe check (#5062) /////////////////////
// Case 1: reuse of old src Mat in OCL pipe. Hard to catch!
OCL_TEST
(
UMat
,
OCL_ThreadSafe_CleanupCallback_1_VeryLongTest
)
{
if
(
!
cv
::
ocl
::
useOpenCL
())
{
std
::
cout
<<
"OpenCL is not enabled. Skip test"
<<
std
::
endl
;
return
;
}
for
(
int
j
=
0
;
j
<
test_loop_times
;
j
++
)
{
const
Size
srcSize
(
320
,
240
);
const
int
type
=
CV_8UC1
;
const
int
dtype
=
CV_16UC1
;
Mat
src
(
srcSize
,
type
);
Mat
dst_ref
(
srcSize
,
dtype
);
// Generate reference data as additional check
OCL_OFF
(
src
.
convertTo
(
dst_ref
,
dtype
));
cv
::
ocl
::
setUseOpenCL
(
true
);
// restore OpenCL state
UMat
dst
(
srcSize
,
dtype
);
// Use multiple iterations to increase chance of data race catching
for
(
int
k
=
0
;
k
<
10000
;
k
++
)
{
UMat
tmpUMat
=
src
.
getUMat
(
ACCESS_RW
);
tmpUMat
.
convertTo
(
dst
,
dtype
);
::
cv
::
ocl
::
finish
();
// force kernel to complete to start cleanup sooner
}
EXPECT_MAT_NEAR
(
dst_ref
,
dst
,
1
);
}
}
// Case 2: concurent deallocation of UMatData between UMat and Mat deallocators. Hard to catch!
OCL_TEST
(
UMat
,
OCL_ThreadSafe_CleanupCallback_2_VeryLongTest
)
{
if
(
!
cv
::
ocl
::
useOpenCL
())
{
std
::
cout
<<
"OpenCL is not enabled. Skip test"
<<
std
::
endl
;
return
;
}
for
(
int
j
=
0
;
j
<
test_loop_times
;
j
++
)
{
const
Size
srcSize
(
320
,
240
);
const
int
type
=
CV_8UC1
;
const
int
dtype
=
CV_16UC1
;
// This test is only relevant for OCL
UMat
dst
(
srcSize
,
dtype
);
// Use multiple iterations to increase chance of data race catching
for
(
int
k
=
0
;
k
<
10000
;
k
++
)
{
Mat
src
(
srcSize
,
type
);
// Declare src inside loop now to catch its destruction on stack
{
UMat
tmpUMat
=
src
.
getUMat
(
ACCESS_RW
);
tmpUMat
.
convertTo
(
dst
,
dtype
);
}
::
cv
::
ocl
::
finish
();
// force kernel to complete to start cleanup sooner
}
}
}
TEST
(
UMat
,
DISABLED_Test_same_behaviour_read_and_read
)
{
...
...
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