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
a8ac3ec7
Commit
a8ac3ec7
authored
Sep 30, 2013
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ocl: perf test: disable MOG2 (random hungs), enable upload/download
parent
66e4aead
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
7 deletions
+5
-7
perf_bgfg.cpp
modules/ocl/perf/perf_bgfg.cpp
+1
-1
perf_matrix_operation.cpp
modules/ocl/perf/perf_matrix_operation.cpp
+4
-6
No files found.
modules/ocl/perf/perf_bgfg.cpp
View file @
a8ac3ec7
...
...
@@ -167,7 +167,7 @@ PERF_TEST_P(VideoMOGFixture, MOG,
typedef
tuple
<
string
,
int
>
VideoMOG2ParamType
;
typedef
TestBaseWithParam
<
VideoMOG2ParamType
>
VideoMOG2Fixture
;
PERF_TEST_P
(
VideoMOG2Fixture
,
MOG2
,
PERF_TEST_P
(
VideoMOG2Fixture
,
DISABLED_MOG2
,
// TODO Disabled: random hungs on buildslave
::
testing
::
Combine
(
::
testing
::
Values
(
"gpu/video/768x576.avi"
,
"gpu/video/1920x1080.avi"
),
::
testing
::
Values
(
1
,
3
)))
{
...
...
modules/ocl/perf/perf_matrix_operation.cpp
View file @
a8ac3ec7
...
...
@@ -161,7 +161,7 @@ PERF_TEST_P(setToFixture, setTo,
typedef
tuple
<
Size
,
int
,
int
>
uploadParams
;
typedef
TestBaseWithParam
<
uploadParams
>
uploadFixture
;
PERF_TEST_P
(
uploadFixture
,
DISABLED_
upload
,
PERF_TEST_P
(
uploadFixture
,
upload
,
testing
::
Combine
(
OCL_TYPICAL_MAT_SIZES
,
testing
::
Range
(
CV_8U
,
CV_64F
),
...
...
@@ -190,15 +190,14 @@ PERF_TEST_P(uploadFixture, DISABLED_upload,
else
OCL_PERF_ELSE
int
value
=
0
;
SANITY_CHECK
(
value
);
SANITY_CHECK_NOTHING
();
}
/////////////////// download ///////////////////////////
typedef
TestBaseWithParam
<
uploadParams
>
downloadFixture
;
PERF_TEST_P
(
downloadFixture
,
DISABLED_
download
,
PERF_TEST_P
(
downloadFixture
,
download
,
testing
::
Combine
(
OCL_TYPICAL_MAT_SIZES
,
testing
::
Range
(
CV_8U
,
CV_64F
),
...
...
@@ -227,6 +226,5 @@ PERF_TEST_P(downloadFixture, DISABLED_download,
else
OCL_PERF_ELSE
int
value
=
0
;
SANITY_CHECK
(
value
);
SANITY_CHECK_NOTHING
();
}
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