mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-06 17:56:58 +00:00
Update cheatsheets
This commit is contained in:
25
nvcc
Normal file
25
nvcc
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# nvcc
|
||||
|
||||
> The NVIDIA CUDA Compiler Driver.
|
||||
> More information: <https://docs.nvidia.com/cuda/cuda-compiler-driver-nvcc>.
|
||||
|
||||
- Compile a CUDA program:
|
||||
|
||||
`nvcc {{path/to/source.cu}} -o {{path/to/executable}}`
|
||||
|
||||
- Generate debu[g] information:
|
||||
|
||||
`nvcc {{path/to/source.cu}} -o {{path/to/executable}} --debug --device-debug`
|
||||
|
||||
- Include libraries from a different path:
|
||||
|
||||
`nvcc {{path/to/source.cu}} -o {{path/to/executable}} -I{{path/to/includes}} -L{{path/to/library}} -l{{library_name}}`
|
||||
|
||||
- Specify the compute capability for a specific GPU architecture:
|
||||
|
||||
`nvcc {{path/to/source.cu}} -o {{path/to/executable}} --generate-code arch={{arch_name}},code={{gpu_code_name}}`
|
||||
Reference in New Issue
Block a user