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
9
10
11
//! Common transformations on expressions.

pub mod algebraic;
pub mod cse;
pub mod inliner;
pub mod loop_fusion;
pub mod loop_fusion_2;
pub mod short_circuit;
pub mod size_inference;
pub mod unroller;
pub mod vectorizer;