weld 0.4.0

Weld is a language and runtime for improving the performance of data-intensive applications.
1
2
3
4
5
6
7
8
//! Optimizations over the sequential IR (SIR).
//!
//! These optimizations simplify the SIR in order to generate more efficient code.
//! Some optimizations are easier to express over the SIR than on the AST (e.g.,
//! constant folding).

pub mod fold_constants;
pub mod simplify_assignments;