runmat_runtime/builtins/common/
mod.rs

1//! Shared helpers for modern builtin implementations.
2//!
3//! This module hosts small utility subsystems that new-style builtins
4//! can depend on without reaching back into the legacy runtime modules.
5
6pub 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;