use std::env; use std::path::Path; use std::process::Command; // Same per-crate convention as the other crates: this crate's tiny-transformer // forward/backward calls GPU ops (via xtrain-autodiff / xtrain-tensor), so it // gates GPU code + tests behind `not(no_cuda)`. cfg does not propagate across // crates, so each crate re-detects nvcc. No CUDA is compiled here. fn main() { println!("cargo:rustc-check-cfg=cfg(no_cuda)"); let cuda_path = env::var("CUDA_HOME") .or_else(|_| env::var("CUDA_PATH")) .unwrap_or_else(|_| "/usr/local/cuda".to_string()); if !nvcc_available(&cuda_path) { println!("cargo:rustc-cfg=no_cuda"); } } fn nvcc_available(cuda_path: &str) -> bool { if Command::new("nvcc").arg("--version").output().is_ok() { return true; } Path::new(&format!("{cuda_path}/bin/nvcc")).exists() }