block_graph/
lib.rs

1#![recursion_limit = "256"]
2mod ai;
3/// graph stuff
4mod graph;
5/// builtin ai layers and value types
6pub mod builtin;
7/// ai layers and value types relating to the burn library
8pub mod burn;
9/// operator like traits for common tensor operations
10pub mod ops;
11pub use {
12	ai::{AI,Decompose,Inner,IntoSequence,Op,UnwrapInner},graph::{ConnectionEditor,ConnectionInfo,Graph,Extendable,Label,Merge,Unvec}
13};