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
73dfc4cb
Commit
73dfc4cb
authored
Feb 24, 2014
by
Andrey Pavlenko
Committed by
OpenCV Buildbot
Feb 24, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2402 from ilya-lavrenov:amd_libs
parents
3845b96f
16bfdbd2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
ocl_test.cpp
modules/ts/src/ocl_test.cpp
+9
-0
No files found.
modules/ts/src/ocl_test.cpp
View file @
73dfc4cb
...
...
@@ -94,6 +94,7 @@ static std::string bytesToStringRepr(size_t value)
void
dumpOpenCLDevice
()
{
using
namespace
cv
::
ocl
;
try
{
std
::
vector
<
PlatformInfo
>
platforms
;
...
...
@@ -165,6 +166,14 @@ void dumpOpenCLDevice()
const
char
*
isUnifiedMemoryStr
=
device
.
hostUnifiedMemory
()
?
"Yes"
:
"No"
;
DUMP_MESSAGE_STDOUT
(
" Host unified memory = "
<<
isUnifiedMemoryStr
);
DUMP_PROPERTY_XML
(
"cv_ocl_current_hostUnifiedMemory"
,
device
.
hostUnifiedMemory
());
const
char
*
haveAmdBlasStr
=
haveAmdBlas
()
?
"Yes"
:
"No"
;
DUMP_MESSAGE_STDOUT
(
" Has AMD Blas = "
<<
haveAmdBlasStr
);
DUMP_PROPERTY_XML
(
"cv_ocl_current_AmdBlas"
,
haveAmdBlas
());
const
char
*
haveAmdFftStr
=
haveAmdFft
()
?
"Yes"
:
"No"
;
DUMP_MESSAGE_STDOUT
(
" Has AMD Fft = "
<<
haveAmdFftStr
);
DUMP_PROPERTY_XML
(
"cv_ocl_current_AmdFft"
,
haveAmdFft
());
}
catch
(...)
{
...
...
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