From 6381023982251959a2c9bab7378b3013304e192b Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Tue, 15 Apr 2025 16:28:51 +0200 Subject: [PATCH] Adding `cuda` feature for easier integration with extensions. --- candle-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/candle-core/Cargo.toml b/candle-core/Cargo.toml index 27198a46..55d98d4d 100644 --- a/candle-core/Cargo.toml +++ b/candle-core/Cargo.toml @@ -44,7 +44,7 @@ criterion = { workspace = true } [features] default = [] _cuda = ["dep:cudarc", "dep:candle-kernels", "dep:ug-cuda"] -# cuda = ["_cuda", "cudarc?/cuda-version-from-build-system", "cudarc?/dynamic-linking"] +cuda = ["_cuda"] cudnn = ["_cuda", "cudarc?/cudnn"] _mkl = ["dep:libc", "dep:intel-mkl-src"] mkl = ["_mkl", "intel-mkl-src?/mkl-static-lp64-iomp"]