laddu_kernel/lib.rs
1//! Validated intermediate representations and specifications for executable kernels.
2
3mod error;
4/// Typed, topologically ordered intermediate representations for kernels.
5pub mod ir;
6mod spec;
7
8pub use error::{KernelError, KernelIrError, KernelResult};
9pub use spec::{CacheName, KernelName, KernelSpec, kernel};