laddu-kernel 0.20.0

Amplitude analysis tools for Rust
Documentation
1
2
3
4
5
6
7
8
9
//! Validated intermediate representations and specifications for executable kernels.

mod error;
/// Typed, topologically ordered intermediate representations for kernels.
pub mod ir;
mod spec;

pub use error::{KernelError, KernelIrError, KernelResult};
pub use spec::{CacheName, KernelName, KernelSpec, kernel};