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
fb223784
Commit
fb223784
authored
Dec 12, 2016
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test: fix Core_HAL.mat_decomp test implementation
parent
03bcfe41
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
5 deletions
+19
-5
test_hal_core.cpp
modules/core/test/test_hal_core.cpp
+19
-5
No files found.
modules/core/test/test_hal_core.cpp
View file @
fb223784
...
@@ -120,15 +120,20 @@ TEST(Core_HAL, mathfuncs)
...
@@ -120,15 +120,20 @@ TEST(Core_HAL, mathfuncs)
}
}
}
}
namespace
{
enum
enum
{
{
HAL_LU
=
0
,
HAL_LU
=
0
,
HAL_CHOL
=
1
HAL_CHOL
=
1
};
};
TEST
(
Core_HAL
,
mat_decomp
)
typedef
testing
::
TestWithParam
<
int
>
HAL
;
TEST_P
(
HAL
,
mat_decomp
)
{
{
for
(
int
hcase
=
0
;
hcase
<
16
;
hcase
++
)
int
hcase
=
GetParam
();
SCOPED_TRACE
(
cv
::
format
(
"hcase=%d"
,
hcase
));
{
{
int
depth
=
hcase
%
2
==
0
?
CV_32F
:
CV_64F
;
int
depth
=
hcase
%
2
==
0
?
CV_32F
:
CV_64F
;
int
size
=
(
hcase
/
2
)
%
4
;
int
size
=
(
hcase
/
2
)
%
4
;
...
@@ -137,7 +142,7 @@ TEST(Core_HAL, mat_decomp)
...
@@ -137,7 +142,7 @@ TEST(Core_HAL, mat_decomp)
double
eps
=
depth
==
CV_32F
?
1e-5
:
1e-10
;
double
eps
=
depth
==
CV_32F
?
1e-5
:
1e-10
;
if
(
size
==
3
)
if
(
size
==
3
)
continue
;
return
;
// TODO ???
Mat
a0
(
size
,
size
,
depth
),
a
(
size
,
size
,
depth
),
b
(
size
,
1
,
depth
),
x
(
size
,
1
,
depth
),
x0
(
size
,
1
,
depth
);
Mat
a0
(
size
,
size
,
depth
),
a
(
size
,
size
,
depth
),
b
(
size
,
1
,
depth
),
x
(
size
,
1
,
depth
),
x0
(
size
,
1
,
depth
);
randu
(
a0
,
-
1
,
1
);
randu
(
a0
,
-
1
,
1
);
...
@@ -175,14 +180,19 @@ TEST(Core_HAL, mat_decomp)
...
@@ -175,14 +180,19 @@ TEST(Core_HAL, mat_decomp)
min_hal_t
=
std
::
min
(
min_hal_t
,
t
);
min_hal_t
=
std
::
min
(
min_hal_t
,
t
);
t
=
(
double
)
getTickCount
();
t
=
(
double
)
getTickCount
();
solve
(
a0
,
b
,
x0
,
(
nfunc
==
HAL_LU
?
DECOMP_LU
:
DECOMP_CHOLESKY
));
bool
solveStatus
=
solve
(
a0
,
b
,
x0
,
(
nfunc
==
HAL_LU
?
DECOMP_LU
:
DECOMP_CHOLESKY
));
t
=
(
double
)
getTickCount
()
-
t
;
t
=
(
double
)
getTickCount
()
-
t
;
EXPECT_TRUE
(
solveStatus
);
min_ocv_t
=
std
::
min
(
min_ocv_t
,
t
);
min_ocv_t
=
std
::
min
(
min_ocv_t
,
t
);
}
}
//std::cout << "x: " << Mat(x.t()) << std::endl;
//std::cout << "x: " << Mat(x.t()) << std::endl;
//std::cout << "x0: " << Mat(x0.t()) << std::endl;
//std::cout << "x0: " << Mat(x0.t()) << std::endl;
EXPECT_LE
(
norm
(
x
,
x0
,
NORM_INF
|
NORM_RELATIVE
),
eps
);
EXPECT_LE
(
norm
(
x
,
x0
,
NORM_INF
|
NORM_RELATIVE
),
eps
)
<<
"x: "
<<
Mat
(
x
.
t
())
<<
"
\n
x0: "
<<
Mat
(
x0
.
t
())
<<
"
\n
a0: "
<<
a0
<<
"
\n
b: "
<<
b
;
double
freq
=
getTickFrequency
();
double
freq
=
getTickFrequency
();
printf
(
"%s (%d x %d, %s): hal time=%.2fusec, ocv time=%.2fusec
\n
"
,
printf
(
"%s (%d x %d, %s): hal time=%.2fusec, ocv time=%.2fusec
\n
"
,
...
@@ -192,3 +202,7 @@ TEST(Core_HAL, mat_decomp)
...
@@ -192,3 +202,7 @@ TEST(Core_HAL, mat_decomp)
min_hal_t
*
1e6
/
freq
,
min_ocv_t
*
1e6
/
freq
);
min_hal_t
*
1e6
/
freq
,
min_ocv_t
*
1e6
/
freq
);
}
}
}
}
INSTANTIATE_TEST_CASE_P
(
Core
,
HAL
,
testing
::
Range
(
0
,
16
));
}
// namespace
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