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
cee18efa
Commit
cee18efa
authored
3 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
ENH: New CUDA_STATIC option, which allows static linking to the CUDA
runtime/toolkit
parent
cca81aee
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!13
ENH: New CUDA_STATIC option, which allows static linking to the CUDA runtime/toolkit
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config/buildSettings.mk
+21
-2
21 additions, 2 deletions
config/buildSettings.mk
config/vars.mk
+16
-14
16 additions, 14 deletions
config/vars.mk
with
37 additions
and
16 deletions
config/buildSettings.mk
+
21
−
2
View file @
cee18efa
...
...
@@ -121,8 +121,9 @@ endif
ifneq
($(shell which nvcc), )
# NVCC, CUDA_HOME, CUDA_VER, GENCODEFLAGS,
# NVCCFLAGS, and NVCCLDFLAGS may be
# overridden by the environment.
# NVCCFLAGS, NVCCLDFLAGS, and CUDA_STATIC
# may be specified/overridden by the
# environment.
# We specifically use variable names "CUDA_VER"
# and "CUDA_HOME" because they will be set in
...
...
@@ -147,4 +148,22 @@ ifneq ($(shell which nvcc), )
-L
${
CUDA_HOME
}
/lib64
\
-L
${
CUDA_HOME
}
/lib/stubs
\
-L
${
CUDA_HOME
}
/lib64/stubs
# Link CUDA libraries statically, if compilation
# was invoked with "make CUDA_STATIC=1".
ifdef
CUDA_STATIC
# The cuda/cudart libs are handled by nvcc. Other
# components of the CUDA toolkit are provided as
# both dynamic and static libraries. "_CUDALIBS"
# is what is used to construct the final NVCCLDFLAGS
# (see vars.mk)
# Other CUDA toolkit components will be added here
# on an as-needed basis.
NVCCFLAGS
+=
--cudart
=
static
_CUDALIBS
=
$(
subst
-lcublas
,-lcublas_static
-lcublasLt_static
-lculibos
,
\
$(
subst
-lcurand
,-lcurand_static,
${
CUDALIBS
}))
else
NVCCFLAGS
+=
--cudart
=
shared
_CUDALIBS
=
${
CUDALIBS
}
endif
endif
This diff is collapsed.
Click to expand it.
config/vars.mk
+
16
−
14
View file @
cee18efa
...
...
@@ -13,19 +13,21 @@ PROJNAME =
# Project-specific compiler/linker flags - these
# can be overridden in the project Makefile.
USRLDFLAGS
=
# Project-specific linker flags
USRINCFLAGS
=
# Project-specific include directories
USRCFLAGS
=
# Project-specific compiler flags for C projects
USRCXXFLAGS
=
# Project-specific compiler flags for C++ projects
USRCPPFLAGS
=
# Project-specific preprocessor flags
LIBS
=
# Project-specific libraries to link against for C
# and C++ projects - these are incorporated into the
# final LDFLAGS, below.
USRNVCCFLAGS
=
# Project-specific compiler flags for CUDA projects
USRNVCCLDFLAGS
=
# Project-specific linker flags for CUDA projects
CUDALIBS
=
# Project-specific libraries to link against for CUDA
# projects - these are incorporated into the final
# NVCCLDFLAGS, below.
USRLDFLAGS
=
# Linker flags
USRINCFLAGS
=
# Include directories
USRCFLAGS
=
# Compiler flags for C projects
USRCXXFLAGS
=
# Compiler flags for C++ projects
USRCPPFLAGS
=
# Preprocessor flags
LIBS
=
# Libraries to link against for C and C++ projects -
# these are incorporated into the final LDFLAGS, below.
USRNVCCFLAGS
=
# Compiler flags for CUDA projects
USRNVCCLDFLAGS
=
# Linker flags for CUDA projects
CUDALIBS
=
# CUDA libraries to link against
(
e.g. curand, cublas, etc
)
-
# these are incorporated into the final NVCCLDFLAGS, below.
# -lcuda and -lcudart are automatically added, so do not
# need to be explicitly listed. Dynamic library names should
# be used here - they will be transformed to their static
# versions if CUDA_STATIC is set (see buildSettings.mk).
# Project outputs - these variables control
# what gets installed from a project. They
...
...
@@ -121,4 +123,4 @@ NVCCLDFLAGS += ${ARCHNVCCLDFLAGS} \
${
USRNVCCLDFLAGS
}
\
--compiler-options
"
${
USRLDFLAGS
}
"
\
-L
.
-L
${
DEVLIBDIR
}
-L
${
LIBDIR
}
\
${
LIBS
}
${
CUDALIBS
}
${
ARCHLIBS
}
${
LIBS
}
${
_
CUDALIBS
}
${
ARCHLIBS
}
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