redstone_ml/
lib.rs

1#![allow(clippy::needless_lifetimes)]
2#![allow(clippy::needless_range_loop)]
3#![allow(clippy::manual_map)]
4#![allow(clippy::new_ret_no_self)]
5#![allow(clippy::erasing_op)]
6#![allow(clippy::identity_op)]
7#![allow(ambiguous_glob_reexports)]
8
9#[macro_use]
10pub mod macros;
11
12pub mod acceleration;
13
14pub mod ndarray;
15pub use ndarray::*;
16
17pub mod tensor;
18pub use tensor::*;
19
20pub mod common;
21pub use common::*;
22
23pub mod linalg;
24pub use linalg::*;
25
26pub mod util;
27pub use util::*;
28
29pub mod autograd;
30pub use autograd::*;
31
32pub mod ops;
33pub mod profiler;