Skip to content
Snippets Groups Projects
Commit 6a07df66 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

RF: Further tweaks to cuda lib linking

parent 7561ad00
No related branches found
No related tags found
1 merge request!15Rf/cuda linking
...@@ -153,15 +153,27 @@ ifneq ($(shell which nvcc), ) ...@@ -153,15 +153,27 @@ ifneq ($(shell which nvcc), )
# was invoked with "make CUDA_STATIC=1". # was invoked with "make CUDA_STATIC=1".
_CUDALIBS = -lcuda _CUDALIBS = -lcuda
ifdef CUDA_STATIC ifdef CUDA_STATIC
# The cuda/cudart libs are handled by nvcc. Other # The cuda/cudart/cudadevrt libs are handled by nvcc.
# components of the CUDA toolkit are provided as # Other components of the CUDA toolkit are provided
# both dynamic and static libraries. "_CUDALIBS" # as both dynamic and static libraries. "_CUDALIBS"
# is what is used to construct the final NVCCLDFLAGS # is what is used to construct the final NVCCLDFLAGS
# (see vars.mk) # (see vars.mk).
# Other CUDA toolkit components will be added here #
# on an as-needed basis. # --cudadevrt was added in CUDA/nvcc 10.*
NVCCFLAGS += --cudart=static --cudadevrt=static #
_CUDALIBS += $(subst -lcublas,-lcublas_static -lcublasLt_static -lculibos, \ # In CUDA 10.* and newer, cublas_static requires
# cublas_Lt_static, in addition to culibos
ifeq ($(patsubst 9.%,,${CUDA_VER}),)
CUBLAS_STATIC = -lcublas_static -lculibos
NVCCFLAGS += --cudart=static
else
CUBLAS_STATIC = -lcublas_static -lcublasLt_static -lculibos
NVCCFLAGS += --cudart=static --cudadevrt=static
endif
# Other CUDA toolkit components will
# be added here on an as-needed basis.
_CUDALIBS += $(subst -lcublas,${CUBLAS_STATIC}, \
$(subst -lcurand,-lcurand_static,${CUDALIBS})) $(subst -lcurand,-lcurand_static,${CUDALIBS}))
else else
NVCCFLAGS += --cudart=shared --cudadevrt=static NVCCFLAGS += --cudart=shared --cudadevrt=static
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment