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
dgl
Commits
a1513f7c
Unverified
Commit
a1513f7c
authored
Jun 10, 2019
by
Quan (Andy) Gan
Committed by
GitHub
Jun 10, 2019
Browse files
update known gpu arch list (#629)
parent
411bcd7e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
cmake/modules/CUDA.cmake
cmake/modules/CUDA.cmake
+6
-4
No files found.
cmake/modules/CUDA.cmake
View file @
a1513f7c
...
...
@@ -10,6 +10,8 @@ endif()
include
(
CheckCXXCompilerFlag
)
check_cxx_compiler_flag
(
"-std=c++11"
SUPPORT_CXX11
)
set
(
dgl_known_gpu_archs
"30 35 50 60 70"
)
################################################################################################
# A function for automatic detection of GPUs installed (if autodetection is enabled)
# Usage:
...
...
@@ -68,8 +70,8 @@ set(CUDA_gpu_detect_output "")
endif
()
if
(
NOT CUDA_gpu_detect_output
)
message
(
WARNING
"Automatic GPU detection failed. Building for all known architectures (
${
mshadow
_known_gpu_archs
}
)."
)
set
(
${
out_variable
}
${
mshadow
_known_gpu_archs
}
PARENT_SCOPE
)
message
(
WARNING
"Automatic GPU detection failed. Building for all known architectures (
${
dgl
_known_gpu_archs
}
)."
)
set
(
${
out_variable
}
${
dgl
_known_gpu_archs
}
PARENT_SCOPE
)
else
()
set
(
${
out_variable
}
${
CUDA_gpu_detect_output
}
PARENT_SCOPE
)
endif
()
...
...
@@ -101,7 +103,7 @@ function(dgl_select_nvcc_arch_flags out_variable)
endif
()
if
(
${
CUDA_ARCH_NAME
}
STREQUAL
"Manual"
)
set
(
CUDA_ARCH_BIN
${
mshadow
_known_gpu_archs
}
CACHE STRING
"Specify 'real' GPU architectures to build binaries for, BIN(PTX) format is supported"
)
set
(
CUDA_ARCH_BIN
${
dgl
_known_gpu_archs
}
CACHE STRING
"Specify 'real' GPU architectures to build binaries for, BIN(PTX) format is supported"
)
set
(
CUDA_ARCH_PTX
"50"
CACHE STRING
"Specify 'virtual' PTX architectures to build PTX intermediate code for"
)
mark_as_advanced
(
CUDA_ARCH_BIN CUDA_ARCH_PTX
)
else
()
...
...
@@ -120,7 +122,7 @@ function(dgl_select_nvcc_arch_flags out_variable)
elseif
(
${
CUDA_ARCH_NAME
}
STREQUAL
"Volta"
)
set
(
__cuda_arch_bin
"70"
)
elseif
(
${
CUDA_ARCH_NAME
}
STREQUAL
"All"
)
set
(
__cuda_arch_bin
${
mshadow
_known_gpu_archs
}
)
set
(
__cuda_arch_bin
${
dgl
_known_gpu_archs
}
)
elseif
(
${
CUDA_ARCH_NAME
}
STREQUAL
"Auto"
)
dgl_detect_installed_gpus
(
__cuda_arch_bin
)
else
()
# (${CUDA_ARCH_NAME} STREQUAL "Manual")
...
...
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