CMake build elf without PTX (#3739)
This commit is contained in:
parent
3ad438c66f
commit
51c31bc10c
@ -240,9 +240,12 @@ macro(override_gpu_arches GPU_ARCHES GPU_LANG GPU_SUPPORTED_ARCHES)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (_SM)
|
if (_SM)
|
||||||
set(_VIRT "")
|
# -real suffix let CMake to only generate elf code for the kernels.
|
||||||
|
# we want this, otherwise the added ptx (default) will increase binary size.
|
||||||
|
set(_VIRT "-real")
|
||||||
set(_CODE_ARCH ${_SM})
|
set(_CODE_ARCH ${_SM})
|
||||||
else()
|
else()
|
||||||
|
# -virtual suffix let CMake to generate ptx code for the kernels.
|
||||||
set(_VIRT "-virtual")
|
set(_VIRT "-virtual")
|
||||||
set(_CODE_ARCH ${_CODE})
|
set(_CODE_ARCH ${_CODE})
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user