Skip to main content

Module engine

Module engine 

Source
Expand description

Compiled-engine layer.

Holds the serializable wire format (spec::EngineSpec) that Python’s compile_engine emits and the Rust runner consumes (spec), plus the runtime Engine that builds from an EngineSpec and executes the static-inference composition. PyO3 bindings over Engine live in [crate::py].

Re-exports§

pub use runtime::DEFAULT_STATIC_STRIDE;
pub use runtime::Engine;
pub use runtime::PerOpValue;
pub use runtime::RuntimeConfig;
pub use runtime::StaticMode;
pub use runtime::StaticResult;

Modules§

runtime
Engine: the compiled-spec execution core.
spec
EngineSpec: the serializable engine wire format.