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
6c07b446
Commit
6c07b446
authored
Apr 11, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8555 from tomoaki0705:jetsontx2
parents
0a63ab36
9cd42650
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
OpenCVDetectCUDA.cmake
cmake/OpenCVDetectCUDA.cmake
+11
-2
No files found.
cmake/OpenCVDetectCUDA.cmake
View file @
6c07b446
...
...
@@ -88,7 +88,17 @@ if(CUDA_FOUND)
set
(
__cuda_arch_bin
"3.2"
)
set
(
__cuda_arch_ptx
""
)
elseif
(
AARCH64
)
set
(
__cuda_arch_bin
"5.3"
)
execute_process
(
COMMAND
"
${
CUDA_NVCC_EXECUTABLE
}
"
"
${
OpenCV_SOURCE_DIR
}
/cmake/checks/OpenCVDetectCudaArch.cu"
"--run"
WORKING_DIRECTORY
"
${
CMAKE_BINARY_DIR
}${
CMAKE_FILES_DIRECTORY
}
/CMakeTmp/"
RESULT_VARIABLE _nvcc_res OUTPUT_VARIABLE _nvcc_out
ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE
)
if
(
NOT _nvcc_res EQUAL 0
)
message
(
STATUS
"Automatic detection of CUDA generation failed. Going to build for all known architectures."
)
set
(
__cuda_arch_bin
"5.3 6.2"
)
else
()
set
(
__cuda_arch_bin
"
${
_nvcc_out
}
"
)
string
(
REPLACE
"2.1"
"2.1(2.0)"
__cuda_arch_bin
"
${
__cuda_arch_bin
}
"
)
endif
()
set
(
__cuda_arch_ptx
""
)
else
()
if
(
${
CUDA_VERSION
}
VERSION_LESS
"8.0"
)
...
...
@@ -96,7 +106,6 @@ if(CUDA_FOUND)
else
()
set
(
__cuda_arch_bin
"2.0 3.0 3.5 3.7 5.0 5.2 6.0 6.1"
)
endif
()
set
(
__cuda_arch_ptx
""
)
endif
()
endif
()
...
...
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