1mod global;
2pub use global::*;
3
4mod config;
5pub use config::*;
6
7mod api;
8pub use api::*;
9
10mod local;
11
12#[cfg(all(
13 test,
14 any(
15 feature = "test-ndarray",
16 feature = "test-wgpu",
17 feature = "test-cuda",
18 feature = "test-metal"
19 )
20))]
21mod tests;