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
71ba54b2
Commit
71ba54b2
authored
Jan 19, 2018
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10637 from catree:fix_perf_build_cuda_9
parents
18ce5292
dcc5a2cb
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 @
71ba54b2
...
@@ -51,6 +51,8 @@ using namespace perf;
...
@@ -51,6 +51,8 @@ using namespace perf;
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// Merge
// Merge
DEF_PARAM_TEST
(
Sz_Depth_Cn
,
cv
::
Size
,
MatDepth
,
MatCn
);
PERF_TEST_P
(
Sz_Depth_Cn
,
Merge
,
PERF_TEST_P
(
Sz_Depth_Cn
,
Merge
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
ARITHM_MAT_DEPTH
,
ARITHM_MAT_DEPTH
,
...
...
modules/cudaarithm/perf/perf_element_operations.cpp
View file @
71ba54b2
...
@@ -51,6 +51,8 @@ using namespace perf;
...
@@ -51,6 +51,8 @@ using namespace perf;
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// AddMat
// AddMat
DEF_PARAM_TEST
(
Sz_Depth
,
cv
::
Size
,
MatDepth
);
PERF_TEST_P
(
Sz_Depth
,
AddMat
,
PERF_TEST_P
(
Sz_Depth
,
AddMat
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
ARITHM_MAT_DEPTH
))
ARITHM_MAT_DEPTH
))
...
@@ -776,6 +778,8 @@ PERF_TEST_P(Sz_Depth, BitwiseAndMat,
...
@@ -776,6 +778,8 @@ PERF_TEST_P(Sz_Depth, BitwiseAndMat,
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// BitwiseAndScalar
// BitwiseAndScalar
DEF_PARAM_TEST
(
Sz_Depth_Cn
,
cv
::
Size
,
MatDepth
,
MatCn
);
PERF_TEST_P
(
Sz_Depth_Cn
,
BitwiseAndScalar
,
PERF_TEST_P
(
Sz_Depth_Cn
,
BitwiseAndScalar
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16U
,
CV_32S
),
Values
(
CV_8U
,
CV_16U
,
CV_32S
),
...
...
modules/cudaarithm/perf/perf_reductions.cpp
View file @
71ba54b2
...
@@ -128,6 +128,8 @@ PERF_TEST_P(Sz_Norm, NormDiff,
...
@@ -128,6 +128,8 @@ PERF_TEST_P(Sz_Norm, NormDiff,
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// Sum
// Sum
DEF_PARAM_TEST
(
Sz_Depth_Cn
,
cv
::
Size
,
MatDepth
,
MatCn
);
PERF_TEST_P
(
Sz_Depth_Cn
,
Sum
,
PERF_TEST_P
(
Sz_Depth_Cn
,
Sum
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16U
,
CV_32F
),
Values
(
CV_8U
,
CV_16U
,
CV_32F
),
...
@@ -228,6 +230,8 @@ PERF_TEST_P(Sz_Depth_Cn, SumSqr,
...
@@ -228,6 +230,8 @@ PERF_TEST_P(Sz_Depth_Cn, SumSqr,
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// MinMax
// MinMax
DEF_PARAM_TEST
(
Sz_Depth
,
cv
::
Size
,
MatDepth
);
PERF_TEST_P
(
Sz_Depth
,
MinMax
,
PERF_TEST_P
(
Sz_Depth
,
MinMax
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16U
,
CV_32F
,
CV_64F
)))
Values
(
CV_8U
,
CV_16U
,
CV_32F
,
CV_64F
)))
...
...
modules/cudaimgproc/perf/perf_blend.cpp
View file @
71ba54b2
...
@@ -49,6 +49,8 @@ using namespace perf;
...
@@ -49,6 +49,8 @@ using namespace perf;
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// BlendLinear
// BlendLinear
DEF_PARAM_TEST
(
Sz_Depth_Cn
,
cv
::
Size
,
MatDepth
,
MatCn
);
PERF_TEST_P
(
Sz_Depth_Cn
,
BlendLinear
,
PERF_TEST_P
(
Sz_Depth_Cn
,
BlendLinear
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_32F
),
Values
(
CV_8U
,
CV_32F
),
...
...
modules/cudaimgproc/perf/perf_histogram.cpp
View file @
71ba54b2
...
@@ -49,6 +49,8 @@ using namespace perf;
...
@@ -49,6 +49,8 @@ using namespace perf;
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// HistEvenC1
// HistEvenC1
DEF_PARAM_TEST
(
Sz_Depth
,
cv
::
Size
,
MatDepth
);
PERF_TEST_P
(
Sz_Depth
,
HistEvenC1
,
PERF_TEST_P
(
Sz_Depth
,
HistEvenC1
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16U
,
CV_16S
)))
Values
(
CV_8U
,
CV_16U
,
CV_16S
)))
...
...
modules/cudastereo/perf/perf_stereo.cpp
View file @
71ba54b2
...
@@ -192,6 +192,8 @@ PERF_TEST_P(ImagePair, DisparityBilateralFilter,
...
@@ -192,6 +192,8 @@ PERF_TEST_P(ImagePair, DisparityBilateralFilter,
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// ReprojectImageTo3D
// ReprojectImageTo3D
DEF_PARAM_TEST
(
Sz_Depth
,
cv
::
Size
,
MatDepth
);
PERF_TEST_P
(
Sz_Depth
,
ReprojectImageTo3D
,
PERF_TEST_P
(
Sz_Depth
,
ReprojectImageTo3D
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16S
)))
Values
(
CV_8U
,
CV_16S
)))
...
...
modules/cudawarping/perf/perf_warping.cpp
View file @
71ba54b2
...
@@ -364,6 +364,8 @@ PERF_TEST_P(Sz_Depth_Cn_Inter, Rotate,
...
@@ -364,6 +364,8 @@ PERF_TEST_P(Sz_Depth_Cn_Inter, Rotate,
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// PyrDown
// PyrDown
DEF_PARAM_TEST
(
Sz_Depth_Cn
,
cv
::
Size
,
MatDepth
,
MatCn
);
PERF_TEST_P
(
Sz_Depth_Cn
,
PyrDown
,
PERF_TEST_P
(
Sz_Depth_Cn
,
PyrDown
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Combine
(
CUDA_TYPICAL_MAT_SIZES
,
Values
(
CV_8U
,
CV_16U
,
CV_32F
),
Values
(
CV_8U
,
CV_16U
,
CV_32F
),
...
...
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