From add4616fb9dbfc7361e5f4f0d2b1c3e3e1f56189 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Wed, 21 Feb 2024 18:43:50 +0000 Subject: [PATCH] fix feature flag --- math/src/gpu/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/src/gpu/mod.rs b/math/src/gpu/mod.rs index c0492c052..a19c098b2 100644 --- a/math/src/gpu/mod.rs +++ b/math/src/gpu/mod.rs @@ -7,5 +7,5 @@ If you were using the `--all-features` flag please read this crate's Cargo.toml" #[cfg(feature = "cuda")] pub mod cuda; -#[cfg(all(feature = "icicle", feature = "alloc"))] +#[cfg(feature = "icicle")] pub mod icicle;