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
17608f7a
Commit
17608f7a
authored
Apr 13, 2015
by
Vladislav Vinogradov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make NVIDIA tests verbose by default
parent
81ebe28c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
main.cpp
modules/gpu/test/main.cpp
+1
-1
main_nvidia.cpp
modules/gpu/test/nvidia/main_nvidia.cpp
+2
-1
test_nvidia.cpp
modules/gpu/test/test_nvidia.cpp
+1
-1
No files found.
modules/gpu/test/main.cpp
View file @
17608f7a
...
@@ -58,7 +58,7 @@ int main(int argc, char** argv)
...
@@ -58,7 +58,7 @@ int main(int argc, char** argv)
"{ h | help ? | false | Print help}"
"{ h | help ? | false | Print help}"
"{ i | info | false | Print information about system and exit }"
"{ i | info | false | Print information about system and exit }"
"{ d | device | -1 | Device on which tests will be executed (-1 means all devices) }"
"{ d | device | -1 | Device on which tests will be executed (-1 means all devices) }"
"{ nvtest_output_level | nvtest_output_level |
none
| NVidia test verbosity level (none, compact, full) }"
"{ nvtest_output_level | nvtest_output_level |
full
| NVidia test verbosity level (none, compact, full) }"
;
;
CommandLineParser
cmd
(
argc
,
(
const
char
**
)
argv
,
keys
);
CommandLineParser
cmd
(
argc
,
(
const
char
**
)
argv
,
keys
);
...
...
modules/gpu/test/nvidia/main_nvidia.cpp
View file @
17608f7a
...
@@ -323,7 +323,8 @@ static void devNullOutput(const std::string& msg)
...
@@ -323,7 +323,8 @@ static void devNullOutput(const std::string& msg)
bool
nvidia_NPPST_Integral_Image
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
bool
nvidia_NPPST_Integral_Image
(
const
std
::
string
&
test_data_path
,
OutputLevel
outputLevel
)
{
{
path
=
test_data_path
.
c_str
();
path
=
test_data_path
.
c_str
();
ncvSetDebugOutputHandler
(
devNullOutput
);
if
(
outputLevel
!=
OutputLevelFull
)
ncvSetDebugOutputHandler
(
devNullOutput
);
NCVAutoTestLister
testListerII
(
"NPPST Integral Image"
,
outputLevel
);
NCVAutoTestLister
testListerII
(
"NPPST Integral Image"
,
outputLevel
);
...
...
modules/gpu/test/test_nvidia.cpp
View file @
17608f7a
...
@@ -44,7 +44,7 @@
...
@@ -44,7 +44,7 @@
#ifdef HAVE_CUDA
#ifdef HAVE_CUDA
OutputLevel
nvidiaTestOutputLevel
=
OutputLevel
None
;
OutputLevel
nvidiaTestOutputLevel
=
OutputLevel
Full
;
using
namespace
cvtest
;
using
namespace
cvtest
;
using
namespace
testing
;
using
namespace
testing
;
...
...
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