Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hpc-compendium
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZIH
hpcsupport
hpc-compendium
Commits
4c51a177
Commit
4c51a177
authored
2 years ago
by
Guilherme Pantoja Calandrini de Azevedo Junior
Browse files
Options
Downloads
Patches
Plain Diff
How to check if OpenMPI has support for CUDA
parent
5b36a572
No related branches found
Branches containing commit
No related tags found
2 merge requests
!808
Automated merge from preview to main
,
!796
How to check if OpenMPI has support for CUDA
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc.zih.tu-dresden.de/docs/software/gpu_programming.md
+7
-0
7 additions, 0 deletions
doc.zih.tu-dresden.de/docs/software/gpu_programming.md
with
7 additions
and
0 deletions
doc.zih.tu-dresden.de/docs/software/gpu_programming.md
+
7
−
0
View file @
4c51a177
...
@@ -200,6 +200,13 @@ detail in [nvcc documentation](https://docs.nvidia.com/cuda/cuda-compiler-driver
...
@@ -200,6 +200,13 @@ detail in [nvcc documentation](https://docs.nvidia.com/cuda/cuda-compiler-driver
This compiler is available via several
`CUDA`
packages, a default version can be loaded via
This compiler is available via several
`CUDA`
packages, a default version can be loaded via
`module load CUDA`
. Additionally, the
`NVHPC`
modules provide CUDA tools as well.
`module load CUDA`
. Additionally, the
`NVHPC`
modules provide CUDA tools as well.
For using CUDA with OpenMPI at multiple nodes, the OpenMPI module loaded shall have be compiled with CUDA
support. If you aren't sure if the module you are using has support for it you can check it as following:
```
console
ompi_info --parsable --all | grep mpi_built_with_cuda_support:value | awk -F":" '{print "OpenMPI supports CUDA:",$
7
}
'
```
#### Usage of the CUDA compiler
#### Usage of the CUDA compiler
The simple invocation
`nvcc <code.cu>`
will compile a valid CUDA program.
`nvcc`
differentiates
The simple invocation
`nvcc <code.cu>`
will compile a valid CUDA program.
`nvcc`
differentiates
...
...
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