Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
45ea1e08
Commit
45ea1e08
authored
Mar 06, 2016
by
Davis E. King
Browse files
Merge pull request #3 from VisionSystemsInc/find_cudnn_fix
Find cudnn fix
parents
d207348a
4fac9804
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
5 deletions
+8
-5
dlib/CMakeLists.txt
dlib/CMakeLists.txt
+5
-1
dlib/dnn/test_for_cudnn/CMakeLists.txt
dlib/dnn/test_for_cudnn/CMakeLists.txt
+1
-2
dlib/dnn/test_for_cudnn/find_cudnn.txt
dlib/dnn/test_for_cudnn/find_cudnn.txt
+2
-2
No files found.
dlib/CMakeLists.txt
View file @
45ea1e08
...
...
@@ -455,6 +455,9 @@ if (NOT TARGET dlib)
# linux).
list
(
APPEND CUDA_NVCC_FLAGS
"-arch=sm_30;-std=c++11;-D__STRICT_ANSI__"
)
set
(
CUDNN_INCLUDE_DIR
""
CACHE PATH
"Directory in which to look for cudnn include files"
)
set
(
CUDNN_LIBRARY_DIR
""
CACHE PATH
"Directory in which to look for cudnn library"
)
include
(
dnn/test_for_cudnn/find_cudnn.txt
)
if
(
cudnn AND NOT DEFINED cuda_test_compile_worked AND NOT DEFINED cudnn_test_compile_worked
)
...
...
@@ -467,7 +470,8 @@ if (NOT TARGET dlib)
else
()
message
(
STATUS
"Checking if you have the right version of cuDNN installed."
)
try_compile
(
cudnn_test_compile_worked
${
PROJECT_BINARY_DIR
}
/cudnn_test_build
${
PROJECT_SOURCE_DIR
}
/dnn/test_for_cudnn cudnn_test
)
${
PROJECT_SOURCE_DIR
}
/dnn/test_for_cudnn cudnn_test
CMAKE_FLAGS -DCUDNN_INCLUDE_DIR=
${
CUDNN_INCLUDE_DIR
}
-DCUDNN_LIBRARY_DIR=
${
CUDNN_LIBRARY_DIR
}
)
if
(
cudnn_test_compile_worked
)
message
(
STATUS
"Found cuDNN: "
${
cudnn
}
)
else
()
...
...
dlib/dnn/test_for_cudnn/CMakeLists.txt
View file @
45ea1e08
...
...
@@ -3,13 +3,12 @@ cmake_minimum_required(VERSION 2.8.4)
project
(
cudnn_test
)
include
(
../../use_cpp_11.cmake
)
include_directories
(
${
cudnn_include
}
)
find_package
(
CUDA 7.0 REQUIRED
)
set
(
CUDA_HOST_COMPILATION_CPP ON
)
list
(
APPEND CUDA_NVCC_FLAGS
"-arch=sm_30;-std=c++11;-D__STRICT_ANSI__"
)
add_definitions
(
-DDLIB_USE_CUDA
)
include
(
find_cudnn.txt
)
include_directories
(
${
cudnn_include
}
)
cuda_add_library
(
cudnn_test STATIC ../cudnn_dlibapi.cpp
${
cudnn
}
)
dlib/dnn/test_for_cudnn/find_cudnn.txt
View file @
45ea1e08
...
...
@@ -3,12 +3,12 @@ message(STATUS "Looking for cuDNN install...")
# Look for cudnn, we will look in the same place as other CUDA
# libraries and also a few other places as well.
find_path(cudnn_include cudnn.h
HINTS ${CUDA_INCLUDE_DIRS}
HINTS ${CUDA_INCLUDE_DIRS}
${CUDNN_INCLUDE_DIR} $ENV{CUDNN_INCLUDE_DIR}
PATHS /usr/local/include
)
get_filename_component(cudnn_hint_path ${CUDA_CUBLAS_LIBRARIES} PATH)
find_library(cudnn cudnn
HINTS ${cudnn_hint_path}
HINTS ${cudnn_hint_path}
${CUDNN_LIBRARY_DIR} $ENV{CUDNN_LIBRARY_DIR}
PATHS /usr/local/lib64
/usr/local/cuda/lib64
/usr/local/cuda/lib
...
...
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