runmat_runtime/builtins/common/
mod.rs1pub mod broadcast;
7pub mod format;
8pub mod fs;
9pub mod gpu_helpers;
10pub mod linalg;
11pub mod path_search;
12pub mod path_state;
13pub mod random;
14pub mod random_args;
15pub mod residency;
16pub mod shape;
17pub mod spec;
18pub mod tensor;
19
20pub use crate::register_builtin_doc_text;
21pub use crate::register_builtin_fusion_spec;
22pub use crate::register_builtin_gpu_spec;
23pub use spec::builtin_doc_texts;
24pub use spec::DocTextInventory;
25
26#[cfg(test)]
27pub mod test_support;