Skip to content

Commit 775dcbe

Browse files
committed
Avoid Rust-CUDA in URLs.
By using `rust-cuda` instead. URLs are case-insensitive so this should have no visible effect.
1 parent 12824a2 commit 775dcbe

File tree

24 files changed

+25
-25
lines changed

24 files changed

+25
-25
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The current line-up of libraries is the following:
6161
- `cuda_std` for GPU-side functions and utilities, such as thread index queries, memory allocation, warp intrinsics, etc.
6262
- _Not_ a low level library, provides many utility functions to make it easier to write cleaner and more reliable GPU kernels.
6363
- Closely tied to `rustc_codegen_nvvm` which exposes GPU features through it internally.
64-
- [`cudnn`](https://github.com/Rust-GPU/Rust-CUDA/tree/master/crates/cudnn) for a collection of GPU-accelerated primitives for deep neural networks.
64+
- [`cudnn`](https://github.com/Rust-GPU/rust-cuda/tree/master/crates/cudnn) for a collection of GPU-accelerated primitives for deep neural networks.
6565
- `cust` for CPU-side CUDA features such as launching GPU kernels, GPU memory allocation, device queries, etc.
6666
- High level with features such as RAII and Rust Results that make it easier and cleaner to manage the interface to the GPU.
6767
- A high level wrapper for the CUDA Driver API, the lower level version of the more common CUDA Runtime API used from C++.

crates/blastoff/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "blastoff"
33
version = "0.1.0"
44
edition = "2021"
55
authors = ["Riccardo D'Ambrosio <rdambrosio016@gmail.com>"]
6-
repository = "https://github.com/Rust-GPU/Rust-CUDA"
6+
repository = "https://github.com/Rust-GPU/rust-cuda"
77

88
[dependencies]
99
bitflags = "2.8"

crates/cuda_builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
authors = ["Riccardo D'Ambrosio <rdambrosio016@gmail.com>", "The rust-gpu Authors"]
66
license = "MIT OR Apache-2.0"
77
description = "Builder for easily building rustc_codegen_nvvm crates"
8-
repository = "https://github.com/Rust-GPU/Rust-CUDA"
8+
repository = "https://github.com/Rust-GPU/rust-cuda"
99
readme = "../../README.md"
1010

1111
[dependencies]

crates/cuda_std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.2.2"
44
edition = "2018"
55
license = "MIT OR Apache-2.0"
66
description = "Standard library for CUDA with rustc_codegen_nvvm"
7-
repository = "https://github.com/Rust-GPU/Rust-CUDA"
7+
repository = "https://github.com/Rust-GPU/rust-cuda"
88
readme = "../../README.md"
99

1010
[dependencies]

crates/cuda_std_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.2.0"
44
edition = "2018"
55
license = "MIT OR Apache-2.0"
66
description = "Macros for cuda_std"
7-
repository = "https://github.com/Rust-GPU/Rust-CUDA"
7+
repository = "https://github.com/Rust-GPU/rust-cuda"
88
readme = "../../README.md"
99

1010
[lib]

crates/cudnn-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "cudnn-sys"
33
version = "0.1.0"
44
edition = "2024"
55
license = "MIT OR Apache-2.0"
6-
repository = "https://github.com/Rust-GPU/Rust-CUDA"
6+
repository = "https://github.com/Rust-GPU/rust-cuda"
77
readme = "../../README.md"
88
links = "cudnn"
99
build = "build/main.rs"

crates/cust/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ it much easier to write multigpu code. The CUDA API is fully thread-safe except
145145
- Added `MemoryAdvise::advise_read_mostly`.
146146
- Added `MemoryAdvise::preferred_location` and `MemoryAdvise::unset_preferred_location`.
147147
Note that advising APIs are only present on high end GPUs such as V100s.
148-
- `StreamFlags::NON_BLOCKING` has been temporarily disabled because of [soundness concerns](https://github.com/Rust-GPU/Rust-CUDA/issues/15).
148+
- `StreamFlags::NON_BLOCKING` has been temporarily disabled because of [soundness concerns](https://github.com/Rust-GPU/rust-cuda/issues/15).
149149

150150
## 0.2.0 - 11/26/21
151151

crates/cust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
edition = "2021"
1010
license = "MIT OR Apache-2.0"
1111
description = "High level bindings to the CUDA Driver API"
12-
repository = "https://github.com/Rust-GPU/Rust-CUDA"
12+
repository = "https://github.com/Rust-GPU/rust-cuda"
1313
readme = "../../README.md"
1414

1515
[dependencies]

crates/cust/src/stream.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ bitflags::bitflags! {
3030

3131
/// This stream does not synchronize with the NULL stream.
3232
///
33-
/// **Note: this flag has been temporarily disabled because of [soundness concerns](https://github.com/Rust-GPU/Rust-CUDA/issues/15)**
33+
/// **Note: this flag has been temporarily disabled because of [soundness concerns](https://github.com/Rust-GPU/rust-cuda/issues/15)**
3434
///
3535
/// Note that the name is chosen to correspond to CUDA documentation, but is nevertheless
3636
/// misleading. All work within a single stream is ordered and asynchronous regardless
@@ -93,7 +93,7 @@ impl Stream {
9393
/// # }
9494
/// ```
9595
pub fn new(mut flags: StreamFlags, priority: Option<i32>) -> CudaResult<Self> {
96-
// NOTE(RDambrosio016): See https://github.com/Rust-GPU/Rust-CUDA/issues/15
96+
// NOTE(RDambrosio016): See https://github.com/Rust-GPU/rust-cuda/issues/15
9797
flags.remove(StreamFlags::NON_BLOCKING);
9898
unsafe {
9999
let mut stream = Stream {

crates/cust_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Core library for cust that can be shared across CPU and GPU"
7-
repository = "https://github.com/Rust-GPU/Rust-CUDA"
7+
repository = "https://github.com/Rust-GPU/rust-cuda"
88
readme = "../../README.md"
99

1010
[dependencies]

0 commit comments

Comments
 (0)