15 lines
469 B
TOML
15 lines
469 B
TOML
[package]
|
|
name = "standalone_nccl_test"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
rust-version = "1.92"
|
|
|
|
[workspace]
|
|
|
|
[dependencies]
|
|
# Updated to match workspace version (0.18.2) with cuda-13000 for CUDA 13.0 compatibility (RTX 5090/Blackwell)
|
|
cudarc = { version = "0.18.2", features = ["std", "driver", "runtime", "nvrtc", "cublas", "cublaslt", "nccl", "cudnn", "cusparse", "cusolver", "cufile", "curand", "cuda-13000"] }
|
|
|
|
[features]
|
|
default = ["nccl"]
|
|
nccl = ["cudarc/nccl"] |