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
dcc5a2cb
Commit
dcc5a2cb
authored
7 years ago
by
catree
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix perf build with CUDA 9.
parent
8226bd25
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
18 additions
and
0 deletions
+18
-0
perf_core.cpp
modules/cudaarithm/perf/perf_core.cpp
+2
-0
perf_element_operations.cpp
modules/cudaarithm/perf/perf_element_operations.cpp
+4
-0
perf_reductions.cpp
modules/cudaarithm/perf/perf_reductions.cpp
+4
-0
perf_blend.cpp
modules/cudaimgproc/perf/perf_blend.cpp
+2
-0
perf_histogram.cpp
modules/cudaimgproc/perf/perf_histogram.cpp
+2
-0
perf_stereo.cpp
modules/cudastereo/perf/perf_stereo.cpp
+2
-0
perf_warping.cpp
modules/cudawarping/perf/perf_warping.cpp
+2
-0
No files found.
modules/cudaarithm/perf/perf_core.cpp
View file @
dcc5a2cb
...
...
@@ -51,6 +51,8 @@ using namespace perf;
//////////////////////////////////////////////////////////////////////
// Merge
DEF_PARAM_TEST
(
Sz_Depth_Cn
,
cv
::
Size
,
MatDepth
,
MatCn
);
PERF_TEST_P
(
Sz_Depth_Cn
,
Merge
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
ARITHM_MAT_DEPTH
,
...
...
This diff is collapsed.
Click to expand it.
modules/cudaarithm/perf/perf_element_operations.cpp
View file @
dcc5a2cb
...
...
@@ -51,6 +51,8 @@ using namespace perf;
//////////////////////////////////////////////////////////////////////
// AddMat
DEF_PARAM_TEST
(
Sz_Depth
,
cv
::
Size
,
MatDepth
);
PERF_TEST_P
(
Sz_Depth
,
AddMat
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
ARITHM_MAT_DEPTH
))
...
...
@@ -776,6 +778,8 @@ PERF_TEST_P(Sz_Depth, BitwiseAndMat,
//////////////////////////////////////////////////////////////////////
// BitwiseAndScalar
DEF_PARAM_TEST
(
Sz_Depth_Cn
,
cv
::
Size
,
MatDepth
,
MatCn
);
PERF_TEST_P
(
Sz_Depth_Cn
,
BitwiseAndScalar
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16U
,
CV_32S
),
...
...
This diff is collapsed.
Click to expand it.
modules/cudaarithm/perf/perf_reductions.cpp
View file @
dcc5a2cb
...
...
@@ -128,6 +128,8 @@ PERF_TEST_P(Sz_Norm, NormDiff,
//////////////////////////////////////////////////////////////////////
// Sum
DEF_PARAM_TEST
(
Sz_Depth_Cn
,
cv
::
Size
,
MatDepth
,
MatCn
);
PERF_TEST_P
(
Sz_Depth_Cn
,
Sum
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16U
,
CV_32F
),
...
...
@@ -228,6 +230,8 @@ PERF_TEST_P(Sz_Depth_Cn, SumSqr,
//////////////////////////////////////////////////////////////////////
// MinMax
DEF_PARAM_TEST
(
Sz_Depth
,
cv
::
Size
,
MatDepth
);
PERF_TEST_P
(
Sz_Depth
,
MinMax
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16U
,
CV_32F
,
CV_64F
)))
...
...
This diff is collapsed.
Click to expand it.
modules/cudaimgproc/perf/perf_blend.cpp
View file @
dcc5a2cb
...
...
@@ -49,6 +49,8 @@ using namespace perf;
//////////////////////////////////////////////////////////////////////
// BlendLinear
DEF_PARAM_TEST
(
Sz_Depth_Cn
,
cv
::
Size
,
MatDepth
,
MatCn
);
PERF_TEST_P
(
Sz_Depth_Cn
,
BlendLinear
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_32F
),
...
...
This diff is collapsed.
Click to expand it.
modules/cudaimgproc/perf/perf_histogram.cpp
View file @
dcc5a2cb
...
...
@@ -49,6 +49,8 @@ using namespace perf;
//////////////////////////////////////////////////////////////////////
// HistEvenC1
DEF_PARAM_TEST
(
Sz_Depth
,
cv
::
Size
,
MatDepth
);
PERF_TEST_P
(
Sz_Depth
,
HistEvenC1
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16U
,
CV_16S
)))
...
...
This diff is collapsed.
Click to expand it.
modules/cudastereo/perf/perf_stereo.cpp
View file @
dcc5a2cb
...
...
@@ -192,6 +192,8 @@ PERF_TEST_P(ImagePair, DisparityBilateralFilter,
//////////////////////////////////////////////////////////////////////
// ReprojectImageTo3D
DEF_PARAM_TEST
(
Sz_Depth
,
cv
::
Size
,
MatDepth
);
PERF_TEST_P
(
Sz_Depth
,
ReprojectImageTo3D
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16S
)))
...
...
This diff is collapsed.
Click to expand it.
modules/cudawarping/perf/perf_warping.cpp
View file @
dcc5a2cb
...
...
@@ -364,6 +364,8 @@ PERF_TEST_P(Sz_Depth_Cn_Inter, Rotate,
//////////////////////////////////////////////////////////////////////
// PyrDown
DEF_PARAM_TEST
(
Sz_Depth_Cn
,
cv
::
Size
,
MatDepth
,
MatCn
);
PERF_TEST_P
(
Sz_Depth_Cn
,
PyrDown
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16U
,
CV_32F
),
...
...
This diff is collapsed.
Click to expand it.
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