From 76d2d6a192d68ce7d68d3f2f9772d2da3c245808 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Wed, 21 Feb 2024 15:27:50 +0000 Subject: [PATCH] feature gate --- math/src/gpu/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/math/src/gpu/mod.rs b/math/src/gpu/mod.rs index a0269071d..c0492c052 100644 --- a/math/src/gpu/mod.rs +++ b/math/src/gpu/mod.rs @@ -7,4 +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"))] pub mod icicle;