Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
base
Commits
6a07df66
"git@git.fmrib.ox.ac.uk:ndcn0236/fslpy.git" did not exist on "2fce48228840814aaa3372a26dd0ba235c3b2d24"
Commit
6a07df66
authored
3 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
RF: Further tweaks to cuda lib linking
parent
7561ad00
No related branches found
No related tags found
1 merge request
!15
Rf/cuda linking
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
config/buildSettings.mk
+20
-8
20 additions, 8 deletions
config/buildSettings.mk
with
20 additions
and
8 deletions
config/buildSettings.mk
+
20
−
8
View file @
6a07df66
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment