diff options
Diffstat (limited to 'candle-core/src/lib.rs')
-rw-r--r-- | candle-core/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/candle-core/src/lib.rs b/candle-core/src/lib.rs index c374d245..016d3806 100644 --- a/candle-core/src/lib.rs +++ b/candle-core/src/lib.rs @@ -33,6 +33,8 @@ //! //! Rust is cool, and a lot of the HF ecosystem already has Rust crates [safetensors](https://github.com/huggingface/safetensors) and [tokenizers](https://github.com/huggingface/tokenizers) +#[cfg(feature = "accelerate")] +mod accelerate; pub mod backend; pub mod backprop; mod conv; @@ -45,6 +47,7 @@ pub mod display; mod dtype; mod dummy_cuda_backend; pub mod error; +pub mod ggml; mod indexer; pub mod layout; #[cfg(feature = "mkl")] |