acme_tensor/backend/mod.rs
1/*
2 Appellation: backend <mod>
3 Contrib: FL03 <jo3mccain@icloud.com>
4*/
5//! # Backend
6//!
7//!
8pub use self::devices::*;
9
10pub(crate) mod devices;
11
12pub mod cpu;
13
14pub trait Backend {}
15
16pub trait BackendStorage {
17 type Backend: Backend;
18}
19
20#[allow(unused_imports)]
21pub(crate) mod prelude {
22 pub use super::devices::Device;
23 pub use super::{Backend, BackendStorage};
24}
25
26#[cfg(test)]
27mod tests {}