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
4aa9f831
Commit
4aa9f831
authored
Dec 26, 2013
by
Alexander Smorkalov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dynamic CUDA support library name fixed. Additional error messages added.
parent
edce617a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
gpumat.cpp
modules/core/src/gpumat.cpp
+11
-2
No files found.
modules/core/src/gpumat.cpp
View file @
4aa9f831
...
@@ -93,6 +93,9 @@ static GpuFactoryType gpuFactory = NULL;
...
@@ -93,6 +93,9 @@ static GpuFactoryType gpuFactory = NULL;
static
DeviceInfoFactoryType
deviceInfoFactory
=
NULL
;
static
DeviceInfoFactoryType
deviceInfoFactory
=
NULL
;
# if defined(__linux__) || defined(__APPLE__) || defined (ANDROID)
# if defined(__linux__) || defined(__APPLE__) || defined (ANDROID)
const
std
::
string
DYNAMIC_CUDA_LIB_NAME
=
"libopencv_dynamicuda.so"
;
# ifdef ANDROID
# ifdef ANDROID
static
const
std
::
string
getCudaSupportLibName
()
static
const
std
::
string
getCudaSupportLibName
()
{
{
...
@@ -144,7 +147,7 @@ static const std::string getCudaSupportLibName()
...
@@ -144,7 +147,7 @@ static const std::string getCudaSupportLibName()
LOGD
(
"Libraries folder found: %s"
,
pathBegin
);
LOGD
(
"Libraries folder found: %s"
,
pathBegin
);
fclose
(
file
);
fclose
(
file
);
return
std
::
string
(
pathBegin
)
+
"/libopencv_core_cuda.so"
;
return
std
::
string
(
pathBegin
)
+
DYNAMIC_CUDA_LIB_NAME
;
}
}
fclose
(
file
);
fclose
(
file
);
LOGE
(
"Could not find library path"
);
LOGE
(
"Could not find library path"
);
...
@@ -165,7 +168,7 @@ static const std::string getCudaSupportLibName()
...
@@ -165,7 +168,7 @@ static const std::string getCudaSupportLibName()
# else
# else
static
const
std
::
string
getCudaSupportLibName
()
static
const
std
::
string
getCudaSupportLibName
()
{
{
return
"libopencv_core_cuda.so"
;
return
DYNAMIC_CUDA_LIB_NAME
;
}
}
# endif
# endif
...
@@ -173,13 +176,18 @@ static bool loadCudaSupportLib()
...
@@ -173,13 +176,18 @@ static bool loadCudaSupportLib()
{
{
void
*
handle
;
void
*
handle
;
const
std
::
string
name
=
getCudaSupportLibName
();
const
std
::
string
name
=
getCudaSupportLibName
();
dlerror
();
handle
=
dlopen
(
name
.
c_str
(),
RTLD_LAZY
);
handle
=
dlopen
(
name
.
c_str
(),
RTLD_LAZY
);
if
(
!
handle
)
if
(
!
handle
)
{
LOGE
(
"Cannot dlopen %s: %s"
,
name
.
c_str
(),
dlerror
());
return
false
;
return
false
;
}
deviceInfoFactory
=
(
DeviceInfoFactoryType
)
dlsym
(
handle
,
"deviceInfoFactory"
);
deviceInfoFactory
=
(
DeviceInfoFactoryType
)
dlsym
(
handle
,
"deviceInfoFactory"
);
if
(
!
deviceInfoFactory
)
if
(
!
deviceInfoFactory
)
{
{
LOGE
(
"Cannot dlsym deviceInfoFactory: %s"
,
dlerror
());
dlclose
(
handle
);
dlclose
(
handle
);
return
false
;
return
false
;
}
}
...
@@ -187,6 +195,7 @@ static bool loadCudaSupportLib()
...
@@ -187,6 +195,7 @@ static bool loadCudaSupportLib()
gpuFactory
=
(
GpuFactoryType
)
dlsym
(
handle
,
"gpuFactory"
);
gpuFactory
=
(
GpuFactoryType
)
dlsym
(
handle
,
"gpuFactory"
);
if
(
!
gpuFactory
)
if
(
!
gpuFactory
)
{
{
LOGE
(
"Cannot dlsym gpuFactory: %s"
,
dlerror
());
dlclose
(
handle
);
dlclose
(
handle
);
return
false
;
return
false
;
}
}
...
...
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