flashlight_tensor/
prelude.rs

1//! import of all functions in crate
2
3pub use crate::{
4    tensor::*,
5    cpu::{
6        math::{
7            functions::*,
8            addition::*,
9            division::*,
10            multiplication::*,
11            subtraction::*,
12        },
13        subtypes::{
14            matrix::*,
15            vector::*,
16            helpers::*,
17        },
18        machine_learning::{
19            relu::*,
20            sigmoid::*,
21        },
22        broadcasting::{
23            helpers::*,
24            operations::*,
25        }
26    },
27    wgpu::*,
28};
29