Skip to content

Commit 5ba1103

Browse files
committed
Use "Rust CUDA" for the project name consistently.
1 parent 1eca961 commit 5ba1103

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

guide/src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Introduction
22

3-
Welcome to the rust-cuda guide! Let's dive right in.
3+
Welcome to the Rust CUDA guide! Let's dive right in.

guide/src/guide/compute_capabilities.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ In CUDA terminology:
2525
features
2626
- **Real architectures** (`sm_XX`) represent actual GPU hardware
2727

28-
rust-cuda works exclusively with virtual architectures since it only generates PTX. The
28+
Rust CUDA works exclusively with virtual architectures since it only generates PTX. The
2929
`NvvmArch::ComputeXX` enum values correspond to CUDA's virtual architectures.
3030

3131
## Using Target Features
@@ -217,7 +217,7 @@ If you encounter errors about missing functions or features:
217217

218218
## Runtime Behavior
219219

220-
Again, rust-cuda **only generates PTX**, not pre-compiled GPU binaries
220+
Again, Rust CUDA **only generates PTX**, not pre-compiled GPU binaries
221221
("[fatbinaries](https://docs.nvidia.com/cuda/cuda-compiler-driver-nvcc/#fatbinaries)").
222222
This PTX is then JIT-compiled by the CUDA driver at _runtime_.
223223

0 commit comments

Comments
 (0)