- Fork cudarc locally (vendor/cudarc): add CudaContext::load_cubin() that calls cuModuleLoadData directly — zero nvrtc dependency - Remove "nvrtc" feature from ml-core, ml-dqn, ml-ppo Cargo.toml - Replace all 89 Ptx::from_binary + load_module calls with load_cubin - ml-core cuda_autograd: wire 9 stub constructors to precompiled cubins (activation, elementwise, linear, loss, reduction, dropout, layer_norm, optimizer) - ml-core build.rs: compile 8 BF16-native CUDA kernels via nvcc - cubin_loader.rs: thin wrapper around CudaContext::load_cubin() - Fix size_of::<f32> in gpu_tensor.rs, stream_ops.rs, layer_norm.rs - Fix test data: Vec<f32> → Vec<half::bf16> for memcpy_htod - Stub ml-ppo/ml-dqn runtime compile_ptx calls (dead code) - backtest_metrics_kernel.cu: full native BF16 rewrite (no float) - backtest_env_kernel.cu: shared memory → __nv_bfloat16 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
109 lines
2.1 KiB
TOML
109 lines
2.1 KiB
TOML
[package]
|
|
name = "cudarc"
|
|
version = "0.19.3"
|
|
edition = "2021"
|
|
authors = ["Chelsea Lowman <clowman1993@gmail.com>"]
|
|
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"
|