[package] name = "cudarc" version = "0.19.3" edition = "2021" authors = ["Chelsea Lowman "] license = "MIT OR Apache-2.0" description = "Safe and minimal CUDA bindings" homepage = "https://github.com/chelsea0x3b/cudarc" documentation = "https://docs.rs/cudarc" repository = "https://github.com/chelsea0x3b/cudarc" readme = "README.md" keywords = ["cuda", "nvidia", "gpu", "cudnn", "cublas"] categories = [ "api-bindings", "hardware-support", "memory-management", "no-std", "science", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [package.metadata.docs.rs] features = [ "cuda-13010", "f16", "cudnn", "nccl", "cupti", "cusparse", "cusolver", "cusolvermg", "cufile", "nvtx", "cupti", "cutensor", ] [features] default = [ "std", "cublas", "cublaslt", "curand", "driver", "runtime", "nvrtc", "fallback-dynamic-loading", ] fallback-latest = [] cuda-version-from-build-system = [] cuda-11040 = [] cuda-11050 = [] cuda-11060 = [] cuda-11070 = [] cuda-11080 = [] cuda-12000 = [] cuda-12010 = [] cuda-12020 = [] cuda-12030 = [] cuda-12040 = [] cuda-12050 = [] cuda-12060 = [] cuda-12080 = [] cuda-12090 = [] cuda-13000 = [] cuda-13010 = [] fallback-dynamic-loading = [] dynamic-loading = [] dynamic-linking = [] static-linking = [] driver = [] nvrtc = [] cublas = ["driver"] cublaslt = ["driver"] runtime = ["driver"] cudnn = ["driver"] curand = ["driver"] nccl = ["driver"] cusparse = ["driver"] cusolver = ["driver", "cublas", "cublaslt", "cusparse"] cusolvermg = ["cusolver"] cufile = ["driver"] nvtx = ["driver"] cupti = ["runtime", "driver"] cutensor = ["driver"] cufft = ["driver"] std = [] no-std = ["no-std-compat/std"] f16 = ["dep:half"] f8 = ["dep:float8"] f4 = ["dep:float4"] [dependencies] no-std-compat = { version = "0.4.1", optional = true, features = ["alloc"] } half = { version = "2", optional = true, default-features = false, features = [ "num-traits", "rand_distr", ] } float8 = { version = "0.7.0", optional = true } float4 = { version = "0.1.0", optional = true } libloading = "0.9.0"